fix: open ports 80/443 in proxy module when proxies are configured #5

Merged
greg merged 1 commits from klaatu/nixos:fix/proxy-firewall into main 2026-03-25 22:37:43 +00:00
+5
View File
@@ -92,4 +92,9 @@ with lib;
virtualHosts = mapAttrs makeHost cfg;
};
config.networking.firewall.allowedTCPPorts = mkIf ((attrValues cfg) != [ ]) [
80
443
];
}