From 742b5e69e9921b2655d6763a2d459c1bc7448b7d Mon Sep 17 00:00:00 2001 From: fi Date: Wed, 20 Nov 2024 05:46:40 +0100 Subject: [PATCH] Restrict allowedTCPPorts to port 8443 --- hosts/nextcloud/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/nextcloud/configuration.nix b/hosts/nextcloud/configuration.nix index da63943..737eeae 100644 --- a/hosts/nextcloud/configuration.nix +++ b/hosts/nextcloud/configuration.nix @@ -9,7 +9,7 @@ hostName = "nextcloud"; firewall = { enable = true; - allowedTCPPorts = [ 80 443 8443 ]; + allowedTCPPorts = [ 8443 ]; }; };