diff options
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/bind/files/named.conf-r9 | 42 |
1 files changed, 27 insertions, 15 deletions
diff --git a/net-dns/bind/files/named.conf-r9 b/net-dns/bind/files/named.conf-r9 index e14996561731..1c805529c855 100644 --- a/net-dns/bind/files/named.conf-r9 +++ b/net-dns/bind/files/named.conf-r9 @@ -1,21 +1,33 @@ +//http local { +// endpoints { "/dns-query"; }; +//}; + options { - directory "/var/cache/bind"; + directory "/var/cache/bind"; pid-file "/run/named/named.pid"; - listen-on { 127.0.0.1; }; - listen-on-v6 { ::1; }; - allow-recursion { - none; - }; - allow-transfer { - none; - }; - allow-update { - none; - }; + + listen-on { 127.0.0.1; }; + listen-on-v6 { ::1; }; + // dns-over-tls + listen-on port 853 tls ephemeral { 127.0.0.1; }; + listen-on-v6 port 853 tls ephemeral { ::1; }; + // dns-over-https + //listen-on port 443 tls ephemeral http local { 127.0.0.1; }; + //listen-on-v6 port 443 tls ephemeral http local { ::1; }; + + allow-recursion { + none; + }; + allow-transfer { + none; + }; + allow-update { + none; + }; }; zone "example.com." { - type primary; - file "/var/lib/bind/db.example.com"; - notify explicit; + type primary; + file "/var/bind/pri/db.example.com"; + notify explicit; }; |