mirror of
https://github.com/luzifer-docker/personal-dns.git
synced 2024-11-10 02:30:01 +00:00
9 lines
164 B
Text
9 lines
164 B
Text
|
#{% for tld, to in entries.items() %}
|
||
|
zone "{{tld}}" in {
|
||
|
type static-stub;
|
||
|
server-addresses { {{ to | join('; ') }}; };
|
||
|
};
|
||
|
#{% endfor %}
|
||
|
|
||
|
# vim: set ft=named:
|