Compare commits

...

3 commits

Author SHA1 Message Date
sid
4d102da99f 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
2026-04-19 01:25:21 +02:00
sid
72700ac671 sid: open port 53
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 19s
Flake check / flake-check (pull_request) Successful in 20s
2026-04-19 01:20:46 +02:00
sid
42bf634d0f coredns binds to 0.0.0.0:53
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 19s
Flake check / flake-check (pull_request) Successful in 20s
2026-04-19 01:13:20 +02:00

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 ];
}