1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Fix unbound config

This commit is contained in:
Stefan Ellmauthaler 2022-08-01 17:27:00 +02:00
parent 78f635ec15
commit feed8f43f5
Failed to extract signature

View File

@ -19,7 +19,7 @@ with lib; {
unbound = { unbound = {
enable = true; enable = true;
settings.server.interface = [ "127.0.0.0" "::1" ]; settings.server.interface = [ "127.0.0.0" "::1" ];
settings.server.access-control = [ "192.168.244.0/24" "fdaa:3313:9dfa:dfa3/64" ]; settings.server.access-control = [ "192.168.244.0/24 allow" "fdaa:3313:9dfa:dfa3::/64 allow" ];
}; };
}; };