From e7b6ab47501cf14d3a7b5cf212c88bde0c6604d7 Mon Sep 17 00:00:00 2001 From: Andrey Meshkov Date: Thu, 11 Oct 2018 13:24:06 +0300 Subject: [PATCH] Change blocked ttl to 10 sec, we don't need it to be large in a home network --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index 6130dff6..3c4d1461 100644 --- a/config.go +++ b/config.go @@ -71,7 +71,7 @@ var config = configuration{ FilterFile: "dnsfilter.txt", // only filename, no path FilteringEnabled: true, SafeBrowsingEnabled: false, - BlockedResponseTTL: 60, // in seconds + BlockedResponseTTL: 10, // in seconds QueryLogEnabled: true, UpstreamDNS: defaultDNS, Cache: "cache",