From ed83941bbea2f7793f60847792f132bde3c461cc Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 18 Dec 2024 12:53:28 -0500 Subject: [PATCH] system: allow ports 80 and 443 --- modules/system.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/system.nix b/modules/system.nix index 2144ef13..5bc69c12 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -245,7 +245,10 @@ in 68 ] ++ optional allowSRB2Port [ 5029 ]; - allowedTCPPorts = mkIf allowDevPort [ 3000 ]; + allowedTCPPorts = [ + 80 + 443 + ] ++ optional allowDevPort [ 3000 ]; }; };