Nix configurations for my homelab
2
fork

Configure Feed

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

caddy: open UDP port 443 to enable HTTP/3 connections

yemou 3e967cfc 6ad86652

+7 -4
+7 -4
modules/services/caddy/default.nix
··· 9 9 } 10 10 ]; 11 11 12 - networking.firewall.allowedTCPPorts = [ 13 - 80 14 - 443 15 - ]; 12 + networking.firewall = { 13 + allowedTCPPorts = [ 14 + 80 15 + 443 16 + ]; 17 + allowedUDPPorts = [ 443 ]; 18 + }; 16 19 17 20 services.caddy = { 18 21 enable = true;