@WaLLy3K I ran into the following errors when following the instructions. I created a bug and it was suggested that a fix can be done by changing the instructions here. This is the bug I reported Lighttpd starts with warning about unknown config-key. · Issue #2248 · pi-hole/pi-hole · GitHub
The errors I am getting are:
(server.c.1295) WARNING: unknown config-key: alias.url (ignored)
I am also getting unknown config-key for ssl.use-compression
The solution I found:
fixed it by mod_alias in /etc/lighttpd/lighttpd.conf
so it looks like below:
server.modules = (
"mod_access",
"mod_accesslog",
"mod_auth",
"mod_expire",
"mod_compress",
"mod_redirect",
"mod_setenv",
"mod_rewrite",
"mod_alias"
)
so to fix this I comment it out ssl.use-compression = "disable" on /etc/lighttpd/external.conf
I am running:
lighttpd -v
lighttpd/1.4.45 (ssl) - a light and fast webserver
Build-Date: Jan 14 2017 21:07:19
I made sure I was up to date with pihole and raspberry pi 3. I hope this helps anyone out there.