From 139e110c3a6ac5a100f76a6f488e7444fd87766c Mon Sep 17 00:00:00 2001 From: adamluk Date: Fri, 27 Apr 2018 13:24:28 +0100 Subject: [PATCH] Update dnscrypt-proxy.toml.j2 Updated dnscrypt-proxy.tml with new options: cache_neg_min_ttl and cache_neg_max_ttl --- roles/dns_encryption/templates/dnscrypt-proxy.toml.j2 | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/roles/dns_encryption/templates/dnscrypt-proxy.toml.j2 b/roles/dns_encryption/templates/dnscrypt-proxy.toml.j2 index 5afeb2ef..03fa1aa3 100644 --- a/roles/dns_encryption/templates/dnscrypt-proxy.toml.j2 +++ b/roles/dns_encryption/templates/dnscrypt-proxy.toml.j2 @@ -238,9 +238,14 @@ cache_min_ttl = 600 cache_max_ttl = 86400 -## TTL for negatively cached entries +## Minimum TTL for negatively cached entries -cache_neg_ttl = 60 +cache_neg_min_ttl = 60 + + +## Maximum TTL for negatively cached entries + +cache_neg_max_ttl = 600