Comment-out the alias module load: disabled by default
Standard lighttpd will refuse to start if modules are loaded more than once. Turn the module addition into a comment, explain why it's disabled by default and in which cases you should enable it.
This commit is contained in:
parent
f1507d8f2e
commit
0ff1275bf9
|
|
@ -3,7 +3,22 @@
|
||||||
# data and are periodically written by the dump1090 daemon.
|
# data and are periodically written by the dump1090 daemon.
|
||||||
|
|
||||||
# Enable alias module
|
# Enable alias module
|
||||||
server.modules += ( "mod_alias" )
|
#
|
||||||
|
## This module is normally already enabled in lighttpd, so you should not
|
||||||
|
## need to uncommment this line.
|
||||||
|
## There are some cases (e.g. when installing this on a Raspberry Pi
|
||||||
|
## that runs PiHole) in which the module has been removed from the
|
||||||
|
## default configuration, and the dump1090-fa web interface no longer
|
||||||
|
## loads properly.
|
||||||
|
## If this is what you are experiencing, or if you see messages in your
|
||||||
|
## error log like:
|
||||||
|
## (server.c.1493) WARNING: unknown config-key: alias.url (ignored)
|
||||||
|
## then uncommenting this line and then restarting lighttpd could fix
|
||||||
|
## the issue.
|
||||||
|
## This is not enabled by default as standard lighttpd will not start if
|
||||||
|
## modules are loaded multiple times.
|
||||||
|
#
|
||||||
|
# server.modules += ( "mod_alias" )
|
||||||
|
|
||||||
alias.url += (
|
alias.url += (
|
||||||
"/dump1090-fa/data/" => "/run/dump1090-fa/",
|
"/dump1090-fa/data/" => "/run/dump1090-fa/",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue