# HG changeset patch # User Oleksandr Gavenko # Date 1449769789 -7200 # Node ID 9fc85bbfb183e6b1c5dc6065b9127985a110b962 # Parent 513a1117ccec214396da9930a8c4a32609685a0f Debugging lighttpd. diff -r 513a1117ccec -r 9fc85bbfb183 lighttpd.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lighttpd.rst Thu Dec 10 19:49:49 2015 +0200 @@ -0,0 +1,27 @@ +.. -*- coding: utf-8; -*- +.. include:: HEADER.rst + +=========== + Lighttpd. +=========== +.. contents:: + +Debugging lighttpd. +=================== + +Checking configuration file:: + + $ lighttpd -t -f /etc/lighttpd/lighttpd.conf + +Add to config:: + + 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" + +