16 lines
464 B
Plaintext
16 lines
464 B
Plaintext
options {
|
|
directory "/var/cache/bind";
|
|
statistics-file "/var/cache/bind/named.stats.txt";
|
|
session-keyfile "/var/cache/bind/session.key";
|
|
pid-file "/var/cache/bind/named.pid";
|
|
lock-file "/var/cache/bind/named.lock";
|
|
|
|
listen-on { any; };
|
|
listen-on-v6 { ::1; };
|
|
# hopefully the default docker bridge network
|
|
# is consistently in 172.17.0.0/24
|
|
allow-recursion { 127.0.0.1; ::1; 172.17.0.0/24; };
|
|
|
|
dnssec-validation yes;
|
|
};
|