1
0
Fork 0
mirror of https://github.com/sujiba/pihole-unbound-hyperlocal.git synced 2025-07-10 21:55:13 +02:00
pihole-unbound-hyperlocal/example.env

49 lines
1.5 KiB
Bash
Raw Normal View History

2023-05-04 01:33:01 +02:00
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
2023-05-04 01:33:01 +02:00
IMAGE=sujiba/pihole-unbound-hyperlocal:latest
2023-05-04 01:33:02 +02:00
NAME=pihole
2023-05-04 01:33:02 +02:00
HOSTNAME=raspi-01
2023-05-04 01:33:01 +02:00
# 80 or an alternative port if you use a reverse proxy like nginx
HTTP_PORT=80
# Set your timezone to make sure logs rotate at local midnight instead of at UTC midnight.
TZ='Europe/Berlin'
# 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
2023-05-04 01:33:02 +02:00
PIHOLE_DNS='127.0.0.1#5335'
2023-05-04 01:33:01 +02:00
# We disable DNSSEC because it is done by Unbound
2023-05-04 01:33:01 +02:00
DNSSEC=false
2023-05-04 01:33:01 +02:00
# 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.
2023-05-04 01:33:02 +02:00
CUSTOM_CACHE_SIZE=10000
2023-05-04 01:33:01 +02:00
# Never forward reverse lookups for private ranges
2023-05-04 01:33:01 +02:00
DNS_BOGUS_PRIV=true
2023-05-04 01:33:01 +02:00
# Never forward non-FQDNs
2023-05-04 01:33:01 +02:00
DNS_FQDN_REQUIRED=true
2023-05-04 01:33:01 +02:00
# Set preferred temperature unit to
# c: Celsius, k: Kelvin, or f Fahrenheit units.
TEMPERATUREUNIT=c
# User interface theme to use.
2023-05-04 01:33:01 +02:00
# default-dark | default-darker | default-light | default-auto | lcars
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
2023-05-04 01:33:02 +02:00
DBINTERVAL=60