From 1dde4c769e3c0fd323af9a39d1b01a7754c90bdc Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 6 Dec 2024 10:46:36 +0100 Subject: [PATCH] fix(network): add standard web ports to allowed TCP ports Add ports 80 and 443 to the list of allowed TCP ports in the firewall configuration. This change ensures that HTTP and HTTPS traffic can pass through, which is essential for web services to operate correctly. --- systems/x86_64-linux/sgx/network.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/systems/x86_64-linux/sgx/network.nix b/systems/x86_64-linux/sgx/network.nix index f871aae..6615531 100644 --- a/systems/x86_64-linux/sgx/network.nix +++ b/systems/x86_64-linux/sgx/network.nix @@ -43,6 +43,8 @@ }; networking.firewall.allowedTCPPorts = [ + 80 + 443 8384 22000 config.services.netatalk.port