From e3f9f20d71e8b02d61164c787d2d11003dc8da4a Mon Sep 17 00:00:00 2001 From: NullBite Date: Sun, 23 Jun 2024 04:08:38 -0400 Subject: [PATCH] rpi4: add 8123 to firewall exclusion --- hosts/rpi4/services.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/rpi4/services.nix b/hosts/rpi4/services.nix index 3071c12..a9d29d3 100644 --- a/hosts/rpi4/services.nix +++ b/hosts/rpi4/services.nix @@ -40,7 +40,11 @@ users.users.nginx.extraGroups = [ "acme" ]; - networking.firewall.allowedTCPPorts = [ 80 443 ]; + networking.firewall.allowedTCPPorts = [ + 80 443 + # this is needed for node to work for some reason + 8123 + ]; services.nginx = { enable = true;