From ca698ef6d6eccec995216173458cfdc039b8ba4b Mon Sep 17 00:00:00 2001 From: Don Harper Date: Sat, 26 Nov 2022 23:31:32 -0600 Subject: [PATCH] server | allow http/https in firewall --- server/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/configuration.nix b/server/configuration.nix index 123d9c2..761a12d 100644 --- a/server/configuration.nix +++ b/server/configuration.nix @@ -124,7 +124,7 @@ allowedUDPPorts = [ config.services.tailscale.port ]; # allow you to SSH in over the public internet - allowedTCPPorts = [ 22 ]; + allowedTCPPorts = [ 22 80 443 ]; };