From c2be5917ef6df215975dceeb7cd3424cd89aecbf Mon Sep 17 00:00:00 2001 From: Eugene Bujak Date: Wed, 10 Oct 2018 00:44:39 +0300 Subject: [PATCH 1/2] Change default filter URL to github-hosted version --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index ec0843b2..46838663 100644 --- a/config.go +++ b/config.go @@ -78,7 +78,7 @@ var config = configuration{ Prometheus: "prometheus :9153", }, Filters: []filter{ - {Enabled: true, URL: "https://filters.adtidy.org/windows/filters/15.txt"}, + {Enabled: true, URL: "https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt"}, }, } From 8503f76747d47160d5d8239e275a7d6d8965dacd Mon Sep 17 00:00:00 2001 From: Eugene Bujak Date: Wed, 10 Oct 2018 00:59:09 +0300 Subject: [PATCH 2/2] Add default disabled hosts filters. --- config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.go b/config.go index 46838663..4860c2a9 100644 --- a/config.go +++ b/config.go @@ -79,6 +79,9 @@ var config = configuration{ }, Filters: []filter{ {Enabled: true, URL: "https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt"}, + {Enabled: false, URL: "https://adaway.org/hosts.txt", Title: "AdAway"}, + {Enabled: false, URL: "https://hosts-file.net/ad_servers.txt", Title: "hpHosts - Ad and Tracking servers only"}, + {Enabled: false, URL: "http://www.malwaredomainlist.com/hostslist/hosts.txt", Title: "MalwareDomainList.com Hosts List"}, }, }