mirror of
https://github.com/luzifer-docker/personal-dns.git
synced 2024-11-09 18:20:02 +00:00
Allow all for recursion
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
f1e80d6183
commit
16a13476c6
1 changed files with 2 additions and 5 deletions
|
@ -1,15 +1,12 @@
|
|||
options {
|
||||
directory "/var/bind";
|
||||
|
||||
allow-recursion {
|
||||
127.0.0.1/32;
|
||||
};
|
||||
allow-recursion { any; };
|
||||
allow-transfer { none; };
|
||||
|
||||
listen-on port 1053 { 127.0.0.1; };
|
||||
|
||||
pid-file "/var/run/named/named.pid";
|
||||
|
||||
allow-transfer { none; };
|
||||
};
|
||||
|
||||
include "/etc/bind/named.stubs";
|
||||
|
|
Loading…
Reference in a new issue