From fec32d554968cca79b106a858e4415e01760ed88 Mon Sep 17 00:00:00 2001 From: yuri Date: Fri, 4 Aug 2023 21:59:25 +0200 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 ]; }; };