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