my over complex system configurations
4

Configure Feed

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

nixos/services/nginx: expose udp ports for quic http3

isabel (Jul 2, 2026, 8:40 AM +0100) 415634ff 7001e2cb

+10 -4
+10 -4
modules/nixos/services/nginx.nix
··· 41 41 (mkIf cfg.enable { 42 42 users.users.nginx.extraGroups = [ "acme" ]; 43 43 44 - networking.firewall.allowedTCPPorts = [ 45 - 80 46 - 443 47 - ]; 44 + networking.firewall = { 45 + allowedTCPPorts = [ 46 + 80 47 + 443 48 + ]; 49 + allowedUDPPorts = [ 50 + 80 51 + 443 52 + ]; 53 + }; 48 54 49 55 services.nginx = { 50 56 enable = true;