fix(adguard): resolve port 53 conflict
Change AdGuard Home DNS listener to bind to 127.0.0.1:5353 to avoid conflicting with existing services on port 53, since we only expose DoH via Nginx.
This commit is contained in:
parent
219391bc85
commit
5dd91f74b1
1 changed files with 2 additions and 0 deletions
|
|
@ -73,6 +73,8 @@ in
|
||||||
port = cfg.port;
|
port = cfg.port;
|
||||||
settings = {
|
settings = {
|
||||||
dns = {
|
dns = {
|
||||||
|
bind_hosts = [ "127.0.0.1" ];
|
||||||
|
port = 5353;
|
||||||
upstream_dns = [ cfg.upstreamDoh ];
|
upstream_dns = [ cfg.upstreamDoh ];
|
||||||
bootstrap_dns = cfg.bootstrapDns;
|
bootstrap_dns = cfg.bootstrapDns;
|
||||||
querylog_enabled = true;
|
querylog_enabled = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue