From 1008f18cb94966efe80348829f55311c5103c58a Mon Sep 17 00:00:00 2001 From: harry Date: Tue, 16 Jul 2024 15:07:52 +0200 Subject: [PATCH] opened missing port --- server-configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server-configuration.nix b/server-configuration.nix index a53899b..bf14ac6 100644 --- a/server-configuration.nix +++ b/server-configuration.nix @@ -47,11 +47,14 @@ in firewall = { enable = true; allowedTCPPorts = [ - 22 + 22 # ssh + 3000 # grafana + 4000 # uptime-kuma 5030 # slskd 8080 # searxng 8083 # calibre-web 8443 # crafty-controller + 9000 # authentik 9091 # transmission ]; allowedUDPPorts = [ ];