From 1a6cf6cd208e91e311895132d5803b0d404bc728 Mon Sep 17 00:00:00 2001 From: Chris Dombroski Date: Sat, 6 Apr 2024 10:54:03 -0400 Subject: [PATCH] Turn off doh prevention --- systems/orangepihole/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/orangepihole/configuration.nix b/systems/orangepihole/configuration.nix index 02e9bab..ef66c28 100644 --- a/systems/orangepihole/configuration.nix +++ b/systems/orangepihole/configuration.nix @@ -56,10 +56,10 @@ startAt = "daily"; postStop = "systemctl reload unbound"; path = with pkgs; [ gawk wget ]; + #wget -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/doh-vpn-proxy-bypass.blacklist.conf >> /etc/unbound/new.conf script = '' wget -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/pro.blacklist.conf > /etc/unbound/new.conf wget -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/tif.blacklist.conf >> /etc/unbound/new.conf - wget -O - https://raw.githubusercontent.com/hagezi/dns-blocklists/main/unbound/doh-vpn-proxy-bypass.blacklist.conf >> /etc/unbound/new.conf echo 'local-zone: "iogames.space." always_nxdomain' >> /etc/unbound/new.conf echo 'local-zone: "taming.io." always_nxdomain' >> /etc/unbound/new.conf awk '!seen[$0]++' /etc/unbound/new.conf > /etc/unbound/ads.conf