1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 11:07:44 +00:00

Use http3 everywhere

This commit is contained in:
RGBCube 2024-02-04 20:45:50 +03:00
parent 5e2e8c5cfe
commit 06362701d5
No known key found for this signature in database
7 changed files with 41 additions and 34 deletions

View file

@ -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
View file

@ -0,0 +1,7 @@
{
sslTemplate = domain: {
forceSSL = true;
quic = true;
useACMEHost = domain;
};
}