diff --git a/bash_functions.sh b/bash_functions.sh index 92e9d1d..520c5b0 100644 --- a/bash_functions.sh +++ b/bash_functions.sh @@ -14,7 +14,10 @@ fix_capabilities() { prepare_configs() { # Done in /start.sh, don't do twice PH_TEST=true . $PIHOLE_INSTALL - distro_check + # Set Debian webserver variables for installConfigs + LIGHTTPD_USER="www-data" + LIGHTTPD_GROUP="www-data" + LIGHTTPD_CFG="lighttpd.conf.debian" installConfigs touch "$setupVars" set +e diff --git a/install.sh b/install.sh index cb93305..fef00ac 100644 --- a/install.sh +++ b/install.sh @@ -7,7 +7,7 @@ export CORE_VERSION="$(cat /etc/docker-pi-hole-version)" export WEB_VERSION="${CORE_VERSION}" export PIHOLE_SKIP_OS_CHECK=true # Overwrite WEB_VERSION if core and web versions are different -export WEB_VERSION="v5.3.1" +export WEB_VERSION="v5.3.2" # Only use for pre-production / testing export CHECKOUT_BRANCHES=false