this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: enable quic ktls for nginx

dusk baddb5d1 2ae2c222

+6 -1
+2
hosts/wolumonde/modules/arpa.nix
··· 1 1 {config, ...}: { 2 2 services.nginx.virtualHosts."9.0.0.0.8.e.f.1.5.0.7.4.0.1.0.0.2.ip6.arpa" = { 3 + quic = true; 4 + kTLS = true; 3 5 }; 4 6 }
+2
hosts/wolumonde/modules/blog.nix
··· 39 39 }; 40 40 41 41 services.nginx.virtualHosts."gaze.systems" = { 42 + quic = true; 43 + kTLS = true; 42 44 useACMEHost = "gaze.systems"; 43 45 forceSSL = true; 44 46 locations."/" = {
+2 -1
hosts/wolumonde/modules/nginx.nix
··· 1 - {inputs, ...}: { 1 + {inputs, pkgs, ...}: { 2 2 services.nginx = { 3 3 enable = true; 4 + package = pkgs.nginxQuic; 4 5 recommendedTlsSettings = true; 5 6 recommendedOptimisation = true; 6 7 recommendedGzipSettings = true;