[pkg-lighttpd] Bug#419176: Possible Fix

Daniel Gibson metalcaedes at gmail.com
Sat Feb 16 03:27:38 UTC 2008


Hi,
this issue should be quite easy to fix. The problem is that obviously
lighty loads the modules from lighttpd.conf first.
So any module that must be loaded later has to be put into conf-available/
So I'd just rename 10-auth.conf to 09-auth.conf so its loaded before
mod_fastcgi and mod_status
and add "10-status.conf" to the conf-available/ directory with the
following content:

------------------
## mod_status generates the status overview of the webserver.
##
## Documentation: /usr/share/doc/lighttpd-doc/status.txt
##      http://trac.lighttpd.net/trac/wiki/Docs%3AModStatus

server.modules += ( "mod_status" )

## relative URL which is used to retrieve the status-page
status.status-url = "/server-status"

## relative URL for the config page which displays the loaded modules
# status.config-url = "/server-config"

## relative URL for a plain-text page containing the internal statistics
# status.statistics-url = "/server-statistics"

## add JavaScript which allows client-side sorting for the connection overview
## default: enable
# status.enable-sort = "disable"
------------------

the mod_status-related entries in lighttpd.conf should be deleted to
avoid confusion.
Probably something similar should be done for mod_webdav.

Regards,
- Daniel





More information about the pkg-lighttpd-maintainers mailing list