From e2e780ea281667dc7ef714d95365e15993ae00b8 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Wed, 2 Jul 2025 00:53:54 +0200 Subject: [PATCH] fix: open firewall Signed-off-by: Lander Van den Bulcke --- hosts/hosting-01/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/hosting-01/default.nix b/hosts/hosting-01/default.nix index 4efa1bd..0823bc1 100644 --- a/hosts/hosting-01/default.nix +++ b/hosts/hosting-01/default.nix @@ -13,6 +13,13 @@ networking.hostName = "hosting-01"; networking.nameservers = [ "8.8.8.8" ]; + networking.firewall = { + enable = true; + allowedTCPPorts = [ + 80 + 443 + ]; + }; services = { nginx = {