]> git.pld-linux.org Git - packages/bind.git/blobdiff - bind-named.conf
BRs for tar.xz source
[packages/bind.git] / bind-named.conf
index c4d65b7db13fb8cd4aaed1af13a5715d1dc84883..7968c2b4da7bd494f0a1ed5119ac2427e8ce78fd 100644 (file)
@@ -1,15 +1,27 @@
 // This is an exaple configuration file for named ( /etc/named.conf ) 
-// Przyk³adowy plik konfiguracyjny /etc/named.conf dla serwera nazw `named'
 
 options {
        directory "/";
        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-validation auto;  # enable DNSSEC validation with the key from bind.keys
+};
+
+http local {
+    endpoints { "/dns-query"; };
 };
 
 zone "localhost" IN {
@@ -53,4 +65,3 @@ logging {
         category xfer-out { xfer-log; };
         category notify { xfer-log; };
 };
-
This page took 0.098937 seconds and 4 git commands to generate.