| 1234567891011121314151617181920212223242526272829 |
- # Pi-hole Configuration
- # Contains sensitive application secrets and configuration
- # Timezone
- TZ={{ container_timezone }}
- # User and Group IDs
- PIHOLE_UID={{ user_uid }}
- PIHOLE_GID={{ user_gid }}
- # Web Interface Admin Password
- FTLCONF_webserver_api_password={{ pihole_webpassword }}
- # Upstream DNS Servers
- FTLCONF_dns_upstreams={{ pihole_dns_upstreams }}
- # DNS Listening Mode
- {% if dns_enabled -%}
- FTLCONF_dns_listeningMode=all
- {% else -%}
- FTLCONF_dns_listeningMode=local
- {% endif %}
- # DHCP Server
- {% if dhcp_enabled -%}
- FTLCONF_dhcp_active=true
- {% else -%}
- FTLCONF_dhcp_active=false
- {% endif %}
|