X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/7cd50fbc836fa07396e60b41bc169649c38e3153..fd09c4a43a9c0155e5b418246ca7f72632eefd8a:/services/dns/templates/named.conf?ds=inline 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