From 47c87b7b1e7fd4ef433eb4c14addec028e70f5f9 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Mon, 10 Apr 2023 22:24:46 +0200 Subject: [PATCH] nginx: Allow LAN access --- system/nixos/nginx.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/nixos/nginx.nix b/system/nixos/nginx.nix index f4457ed..ccdc8fb 100644 --- a/system/nixos/nginx.nix +++ b/system/nixos/nginx.nix @@ -34,6 +34,8 @@ { "enp1s0".allowedTCPPorts = nginxTCPPorts; "enp1s0".allowedUDPPorts = nginxUDPPorts; + "enp7s0".allowedTCPPorts = nginxTCPPorts; + "enp7s0".allowedUDPPorts = nginxUDPPorts; "tailscale0".allowedTCPPorts = nginxTCPPorts; "tailscale0".allowedUDPPorts = nginxUDPPorts; };