From 56b09db387b199e04e4bf6fa0b8ad60a4cb9dc06 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:13:02 +0200 Subject: [PATCH] Update --- hosts/modules/server/adguard.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hosts/modules/server/adguard.nix b/hosts/modules/server/adguard.nix index 14e3917..ab8fe3e 100644 --- a/hosts/modules/server/adguard.nix +++ b/hosts/modules/server/adguard.nix @@ -4,8 +4,7 @@ services.adguardhome = { enable = true; host = "0.0.0.0"; - port = 3001; - openFirewall = true; # Open port 53(dns) & 3000(webui) + port = 3000; }; - networking.firewall.allowedTCPPorts = [ 53 3001 ]; + networking.firewall.allowedTCPPorts = [ 53 3000 ]; }