coredns binds to 0.0.0.0:53 #30

Merged
sid merged 2 commits from develop into master 2026-04-19 01:25:21 +02:00

View file

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