From 4db0fd4bd7429677efb9e43962e2732ca712a8d7 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Sat, 31 Aug 2024 17:44:26 +0530 Subject: [PATCH] all: open http/https ports for local network --- hosts/shared/caddy.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/shared/caddy.nix b/hosts/shared/caddy.nix index 82c2c04..fbc3119 100644 --- a/hosts/shared/caddy.nix +++ b/hosts/shared/caddy.nix @@ -4,5 +4,6 @@ _: { acmeCA = "https://acme-v02.api.letsencrypt.org/directory"; email = "admin@acomputer.lol"; }; + networking.firewall.allowedTCPPorts = [ 80 443 ]; }