enable quic and http3

This commit is contained in:
chaos 2024-07-24 16:56:44 +01:00
parent 0f9811acdb
commit 2baae28b27
No known key found for this signature in database

View file

@ -11,6 +11,7 @@ in {
services.nginx.virtualHosts = mkOption { services.nginx.virtualHosts = mkOption {
type = attrsOf (submodule { type = attrsOf (submodule {
config.http3 = mkDefault true; config.http3 = mkDefault true;
config.quic = mkDefault true;
}); });
}; };
}; };