Merge pull request 'coredns binds to 0.0.0.0:53' (#30) from develop into master
All checks were successful
Deploy configs / deploy-configs (push) Successful in 22s

Reviewed-on: #30
This commit is contained in:
sid 2026-04-19 01:25:21 +02:00
commit 4d102da99f

View file

@ -10,7 +10,7 @@
enable = true;
config = with constants; ''
.:53 {
bind 127.0.0.1
bind 0.0.0.0
hosts {
${hosts.sid.ip} ${ca-fqdn}
@ -29,4 +29,7 @@
}
'';
};
networking.firewall.allowedUDPPorts = [ 53 ];
networking.firewall.allowedTCPPorts = [ 53 ];
}