1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-14 03:39:46 +00:00

Include mod_accesslog with new config (#5121)

This commit is contained in:
Adam Warner 2023-01-16 20:08:42 +00:00 committed by GitHub
commit 6cae37e720
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -79,4 +79,4 @@ $HTTP["host"] == "pi.hole" {
}
# (keep this on one line for basic-install.sh filtering during install)
server.modules += ( "mod_access", "mod_redirect", "mod_fastcgi", "mod_setenv" )
server.modules += ( "mod_access", "mod_accesslog", "mod_redirect", "mod_fastcgi", "mod_setenv" )

View File

@ -1442,7 +1442,7 @@ installConfigs() {
fi
chmod 644 $conf
if is_command lighty-enable-mod ; then
lighty-enable-mod pihole-admin access redirect fastcgi setenv > /dev/null || true
lighty-enable-mod pihole-admin access accesslog redirect fastcgi setenv > /dev/null || true
else
# Otherwise, show info about installing them
printf " %b Warning: 'lighty-enable-mod' utility not found\\n" "${INFO}"