Firewall allow port 53: DNS requests

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-01-15 18:48:18 +01:00
parent 8c4b9340b6
commit 52ee08e13b

View File

@@ -6,5 +6,10 @@
port = 3000; port = 3000;
}; };
networking.firewall = {
allowedTCPPorts = [53];
allowedUDPPorts = [53];
};
services.cloudflared.tunnels."f7c8f777-a36c-4b9a-b6e3-6a112bd43e73".ingress."adguard.hadi.diy" = "http://localhost:${toString config.services.adguardhome.port}"; services.cloudflared.tunnels."f7c8f777-a36c-4b9a-b6e3-6a112bd43e73".ingress."adguard.hadi.diy" = "http://localhost:${toString config.services.adguardhome.port}";
} }