]> git.pld-linux.org Git - packages/bind.git/blobdiff - bind-named.conf
BRs for tar.xz source
[packages/bind.git] / bind-named.conf
index ed68a278d37e01d6056928bee755affdd4778fa4..7968c2b4da7bd494f0a1ed5119ac2427e8ce78fd 100644 (file)
@@ -5,14 +5,23 @@ options {
        pid-file "named.pid";
        auth-nxdomain yes;
        datasize default;
-// Uncoment these to enable IPv6 connections support
-// IPv4 will still work
-//     listen-on { none; };
+// For IPv4 and IPv6 uncoment listen-on and listen-on-v6 entries.
+// Regular DNS
+//     listen-on { any; };
+// DNS-over-TLS (DoT)
+//     listen-on tls ephemeral { any; };
+// DNS-over-HTTPS (DoH)
+//     listen-on tls ephemeral http local { any; };
 //     listen-on-v6 { any; };
+//     listen-on-v6 tls ephemeral { any; };
+//     listen-on-v6 tls ephemeral http local { any; };
 
-       #dnssec-enable yes;      # enable DNSSEC, default yes
+//     dnssec-enable yes;      # enable DNSSEC, default yes
        dnssec-validation auto;  # enable DNSSEC validation with the key from bind.keys
-       dnssec-lookaside auto;   # enable DNSSEC DLV registry check with the key from bind.keys
+};
+
+http local {
+    endpoints { "/dns-query"; };
 };
 
 zone "localhost" IN {
This page took 0.153908 seconds and 4 git commands to generate.