From d07eb5eab2b46b8e02c5f22673fda6e91abdc66a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 23 Jul 2022 02:04:42 +0200 Subject: [PATCH] auth: open ldaps port --- hosts/containers/auth/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/containers/auth/default.nix b/hosts/containers/auth/default.nix index 5af84004..2d523e7f 100644 --- a/hosts/containers/auth/default.nix +++ b/hosts/containers/auth/default.nix @@ -17,7 +17,11 @@ "::1" = [ "auth.c3d2.de" ]; "127.0.0.1" = [ "auth.c3d2.de" ]; }; - firewall.allowedTCPPorts = [ 80 443 ]; + firewall.allowedTCPPorts = [ + 80 # http + 443 # https + 636 # ldaps + ]; }; services = {