From 3d9fa7f8c85ba83a4a46ccbdd385d9fb6a2b1441 Mon Sep 17 00:00:00 2001 From: adamluk Date: Fri, 27 Apr 2018 15:29:29 +0100 Subject: [PATCH] Update dnscrypt-proxy.toml.j2 (#899) 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 5afeb2e..03fa1aa 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