diff --git a/run-pihole/README.md b/run-pihole/README.md index fc6742c..898d98d 100644 --- a/run-pihole/README.md +++ b/run-pihole/README.md @@ -180,7 +180,7 @@ DNS-over-TLS provider. ### PiHole with DoTe Simply copy the `custom_pihole_dote.sh` script to `/mnt/data/scripts` and run it -to forward all DNS traffic over TLS to Cloudflare 1.1.1.1. You can modify the +to forward all DNS traffic over TLS to Cloudflare 1.1.1.1 / 1.0.0.1. You can modify the script to forward to different services with ease and full configuration options including certificate pinning is available in the DoTe README here: https://github.com/chrisstaite/DoTe/ diff --git a/run-pihole/custom_pihole_dote.sh b/run-pihole/custom_pihole_dote.sh index c4a63e6..7f676a6 100755 --- a/run-pihole/custom_pihole_dote.sh +++ b/run-pihole/custom_pihole_dote.sh @@ -27,7 +27,7 @@ podman run -d --network dns --restart always \ -v "/mnt/data/pihole/etc-dnsmasq.d/:/etc/dnsmasq.d/" \ --dns=127.0.0.1 \ --hostname pi.hole \ - -e DOTE_OPTS="-s 127.0.0.1:5053 -m 10" \ + -e DOTE_OPTS="-s 127.0.0.1:5053 -f 1.1.1.1 -f 1.0.0.1 -m 10" \ -e VIRTUAL_HOST="pi.hole" \ -e PROXY_LOCATION="pi.hole" \ -e PIHOLE_DNS_="127.0.0.1#5053" \