adguard: bind DNS to LAN + loopback only to avoid podman conflict

Binding to 0.0.0.0 claimed port 53 on podman bridge interfaces,
preventing aardvark-dns from starting and breaking Forgejo Actions.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
rope 2026-05-21 14:34:11 +01:00
parent 4ffce27cdd
commit fb2d3a1ff7

View file

@ -12,7 +12,7 @@
mutableSettings = false; mutableSettings = false;
settings = { settings = {
dns = { dns = {
bind_hosts = [ "0.0.0.0" ]; bind_hosts = [ "10.0.0.1" "127.0.0.1" ];
port = 53; port = 53;
# Query all upstreams in parallel; take the fastest response # Query all upstreams in parallel; take the fastest response
upstream_mode = "parallel"; upstream_mode = "parallel";