From 8836d09110828a028f134e1e7002e4ed1f07f7e7 Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 29 Jan 2026 12:29:27 +0100 Subject: [PATCH] opens https port on home server --- hosts/dnsc-server/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/dnsc-server/default.nix b/hosts/dnsc-server/default.nix index 0d47a91..e2a8771 100644 --- a/hosts/dnsc-server/default.nix +++ b/hosts/dnsc-server/default.nix @@ -62,10 +62,10 @@ networking.firewall = { enable = true; allowedTCPPorts = [ - 9002 # Actual + 443 ]; allowedUDPPorts = [ - 9002 # Actual + 443 ]; };