X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/031a757fb7b600a9015d018011cc7b135d7c8627..05968c86ff71ae5031fd5940cf4807a4b8e71e24:/services/dns/templates/named.conf diff --git a/services/dns/templates/named.conf b/services/dns/templates/named.conf index 9638bc0..cc0a1f6 100644 --- a/services/dns/templates/named.conf +++ b/services/dns/templates/named.conf @@ -1,5 +1,5 @@ options { - directory "/var/bind"; + directory "/var/lib/named"; % if isp_dns1 or isp_dns2: forward first; @@ -29,19 +29,19 @@ options { zone "." IN { type hint; - file "named.ca"; + file "root.hint"; }; zone "localhost" IN { type master; - file "pri/localhost.zone"; + file "localhost.zone"; allow-update { none; }; notify no; }; zone "127.in-addr.arpa" IN { type master; - file "pri/127.zone"; + file "127.0.0.zone"; allow-update { none; }; notify no; }; @@ -49,9 +49,9 @@ zone "127.in-addr.arpa" IN { % for zone in zones: zone "${zone.name}" IN { type master; - file "pri/${zone.name}.zone"; + file "${zone.name}.zone"; allow-update { none; }; notify no; }; -% endfor \ No newline at end of file +% endfor