mirror of
https://github.com/RGBCube/ncc
synced 2025-07-29 11:07:44 +00:00
Use http3 everywhere
This commit is contained in:
parent
5e2e8c5cfe
commit
06362701d5
7 changed files with 41 additions and 34 deletions
|
@ -1,5 +1,6 @@
|
|||
users: let
|
||||
configuration = import ./configuration.nix users;
|
||||
merge = import ./merge.nix;
|
||||
ssl = import ./ssl.nix;
|
||||
values = import ./values.nix;
|
||||
in configuration // merge // values
|
||||
in configuration // merge // ssl // values
|
||||
|
|
7
lib/ssl.nix
Normal file
7
lib/ssl.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
sslTemplate = domain: {
|
||||
forceSSL = true;
|
||||
quic = true;
|
||||
useACMEHost = domain;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue