gentoo/net-dns/bind/files/named.conf.auth
Paul Zander 29cee14c48
net-dns/bind: 9.18.29-r1 properly include named.conf.auth
Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
2024-09-02 09:29:19 +01:00

34 lines
625 B
Plaintext

//http local {
// endpoints { "/dns-query"; };
//};
options {
directory "/var/cache/bind";
pid-file "/run/named/named.pid";
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/bind/pri/db.example.com";
notify explicit;
};