2019-07-23 11:30:53 +02:00
|
|
|
# Increasing caching
|
2019-07-23 14:09:34 +02:00
|
|
|
# This has potential to increase memory usage to 110m under heavy usage, but
|
|
|
|
# I find that unlikely as almost everything is using so short TTLs
|
2019-07-23 11:30:53 +02:00
|
|
|
# See also MEMORY CONTROL EXAMPLE in man unbound.conf
|
|
|
|
|
|
|
|
server:
|
2023-02-21 18:08:54 +01:00
|
|
|
# bytes in message cache, defaults to 4m
|
|
|
|
msg-cache-size: 50m
|
|
|
|
# bytes in rrset cache, defaults to 4m
|
|
|
|
rrset-cache-size: 50m
|
|
|
|
# nxdomain cache, default 1m
|
|
|
|
neg-cache-size: 10m
|
|
|
|
# Cache results for 15 minutes even if they had a shorter TTL. Cloudflare
|
|
|
|
# zone export used to have 1 second, and I have also been seeing 1
|
|
|
|
# minute in the wild, I think 5 mins shouldn't break anything, but bigger
|
|
|
|
# might.
|
|
|
|
cache-min-ttl: 900
|