You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
385 B
Plaintext
19 lines
385 B
Plaintext
# Bind only on loopback interface
|
|
bind-interfaces
|
|
interface=lo
|
|
listen-address={{ listen_address }}
|
|
# Supress resolv.conf
|
|
no-resolv
|
|
no-poll
|
|
# Upstream dns servers
|
|
{% for ip in global_dns_upstream_servers %}
|
|
server={{ ip }}
|
|
{% endfor %}
|
|
# Enable caching
|
|
cache-size={{ cache_size }}
|
|
# Require full domains to be forwarded
|
|
domain-needed
|
|
# Verify dnssec values
|
|
dnssec
|
|
dnssec-check-unsigned
|