From c668d6fbd37d272d8a7d9416c55e1148d7b69c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Fri, 14 Jan 2022 20:51:43 +0100 Subject: [PATCH] Unblock TCP ports --- config/services/nginx.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/services/nginx.nix b/config/services/nginx.nix index 49fad650..3a040602 100644 --- a/config/services/nginx.nix +++ b/config/services/nginx.nix @@ -24,4 +24,6 @@ resolver.addresses = [ "127.0.0.1" "[::1]" ]; sslProtocols = "TLSv1.3"; }; + networking.firewall.allowedTCPPorts = [ 80 443 ]; + networking.firewall.allowedUDPPorts = [ 443 ]; }