From 6ffcdb04749b116cbf432169ec235028e3f6aa4f Mon Sep 17 00:00:00 2001 From: ValdikSS Date: Mon, 11 Apr 2022 22:23:09 +0300 Subject: [PATCH] Filter appspot.online domains They cause issues in squid 5 due to special filter for "appspot" (.com) being applied to all appspot.* domains, and squid 5 does not expect subdomains in the white list along with the domain zone. --- config/exclude-regexp-dist.awk | 1 + 1 file changed, 1 insertion(+) diff --git a/config/exclude-regexp-dist.awk b/config/exclude-regexp-dist.awk index c231dad..b8d6f87 100644 --- a/config/exclude-regexp-dist.awk +++ b/config/exclude-regexp-dist.awk @@ -182,3 +182,4 @@ /^pinupbet[0-9]{2,3}\./ {next} /^pinupbk[0-9]{2,3}\./ {next} /^zfilm-hd-[0-9]{3,4}\./ {next} +/appspot\.online/ {next}