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 {
|
options {
|
||||||
directory "/var/bind";
|
directory "/var/bind";
|
||||||
|
|
||||||
allow-recursion {
|
allow-recursion { any; };
|
||||||
127.0.0.1/32;
|
allow-transfer { none; };
|
||||||
};
|
|
||||||
|
|
||||||
listen-on port 1053 { 127.0.0.1; };
|
listen-on port 1053 { 127.0.0.1; };
|
||||||
|
|
||||||
pid-file "/var/run/named/named.pid";
|
pid-file "/var/run/named/named.pid";
|
||||||
|
|
||||||
allow-transfer { none; };
|
|
||||||
};
|
};
|
||||||
|
|
||||||
include "/etc/bind/named.stubs";
|
include "/etc/bind/named.stubs";
|
||||||
|
|
Loading…
Reference in a new issue