From a1a4025f4976a506cfb0f0c08018b125ff5336a2 Mon Sep 17 00:00:00 2001 From: sujiba Date: Thu, 22 Feb 2024 22:22:29 +0000 Subject: [PATCH] =?UTF-8?q?pihole-unbound-hyperlocal/example.env=20hinzuge?= =?UTF-8?q?f=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pihole-unbound-hyperlocal/example.env | 38 +++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 pihole-unbound-hyperlocal/example.env diff --git a/pihole-unbound-hyperlocal/example.env b/pihole-unbound-hyperlocal/example.env new file mode 100644 index 0000000..2e12857 --- /dev/null +++ b/pihole-unbound-hyperlocal/example.env @@ -0,0 +1,38 @@ +# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/ + +# http://pi.hole/admin password. Run docker logs pihole | grep random to find your random pass. +WEBPASSWORD=PASSWORD + +# Upstream DNS server(s) for Pi-hole to forward queries to, seperated by a semicolon +# (supports non-standard ports with #[port number]) e.g 127.0.0.1#5053;8.8.8.8;8.8.4.4 +# Hardcoded to our Unbound server +PIHOLE_DNS='127.0.0.1#5335' + +# We disable DNSSEC because it is done by Unbound +DNSSEC=false + +# Set the cache size for dnsmasq. +# Useful for increasing the default cache size or to set it to 0. +# Note that when DNSSEC is "true", then this setting is ignored. +CUSTOM_CACHE_SIZE=10000 + +# Never forward reverse lookups for private ranges +DNS_BOGUS_PRIV=true + +# Never forward non-FQDNs +DNS_FQDN_REQUIRED=true + +# Set preferred temperature unit to +# c: Celsius, k: Kelvin, or f Fahrenheit units. +TEMPERATUREUNIT=c + +# User interface theme to use. +# default-dark | default-darker | default-light +WEBTHEME=default-dark + +# pihole-FTL.conf +# How many days should Pi-hole store requests - discard older entries +MAXDBDAYS=30 + +# Write FTL database from RAM to SD card every x minutes. - Save SD card +DBINTERVAL=60 \ No newline at end of file