[ About | Licence | Contacts ]
Written by Oleksandr Gavenko (AKA gavenkoa), compiled on 2024-04-01 from rev 052223c22317.

Lighttpd.

Documentation.

https://redmine.lighttpd.net/projects/lighttpd/wiki
Official docs.
https://wiki.archlinux.org/index.php/Lighttpd
Arch wiki.

Debugging lighttpd.

Checking configuration file:

$ lighttpd -t -f /etc/lighttpd/lighttpd.conf

To enable logging add to config:

accesslog.filename = "/var/log/lighttpd/access.log"
server.errorlog = "/var/log/lighttpd/error.log"

debug.log-response-header = "enable"
debug.log-request-handling = "enable"

To debug CGI (see stderr from CGI script):

server.breakagelog = "/var/log/lighttpd/cgi.log"