Improve the unbound configuration
parent
5236196288
commit
e9f84d7d99
@ -1,19 +1,21 @@
|
|||||||
server:
|
server:
|
||||||
verbosity: 1
|
verbosity: 1
|
||||||
interface: 0.0.0.0
|
interface: 0.0.0.0
|
||||||
interface: ::0
|
{{ 'interface: ::0' if SUBNET6 }}
|
||||||
logfile: ""
|
logfile: ""
|
||||||
do-ip4: yes
|
do-ip4: yes
|
||||||
do-ip6: yes
|
do-ip6: {{ 'yes' if SUBNET6 else 'no' }}
|
||||||
do-udp: yes
|
do-udp: yes
|
||||||
do-tcp: yes
|
do-tcp: yes
|
||||||
do-daemonize: no
|
do-daemonize: no
|
||||||
access-control: {{ SUBNET }} allow
|
access-control: {{ SUBNET }} allow
|
||||||
|
{{ 'access-control: {{ SUBNET6 }} allow' if SUBNET6 }}
|
||||||
directory: "/etc/unbound"
|
directory: "/etc/unbound"
|
||||||
username: unbound
|
username: unbound
|
||||||
auto-trust-anchor-file: trusted-key.key
|
auto-trust-anchor-file: trusted-key.key
|
||||||
root-hints: "/etc/unbound/root.hints"
|
root-hints: "/etc/unbound/root.hints"
|
||||||
hide-identity: yes
|
hide-identity: yes
|
||||||
hide-version: yes
|
hide-version: yes
|
||||||
max-udp-size: 4096
|
cache-min-ttl: 300
|
||||||
msg-buffer-size: 65552
|
qname-minimisation: yes
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue