1####################################################################### 2## 3## Debug options 4## --------------- 5## 6## See https://redmine.lighttpd.net/projects/lighttpd/wiki/DebugVariables 7## 8## Enable those options for debugging the behavior 9## 10## The settings can be set per location/vhost. 11## 12 13## 14## log-request-handling allows you to track the request 15## handing inside lighttpd. 16## 17#debug.log-request-handling = "enable" 18 19## 20## log all request headers. 21## 22#debug.log-request-header = "enable" 23 24## 25## similar to log-request-header. 26## but only logs if we encountered an error. 27## (return codes 400 and 5xx) 28## 29#debug.log-request-header-on-error = "enable" 30 31## 32## log the header we send out to the client. 33## 34#debug.log-response-header = "enable" 35 36## 37## log if a file wasnt found in the error log. 38## 39#debug.log-file-not-found = "enable" 40 41## 42## debug conditionals handling 43## 44#debug.log-condition-handling = "enable" 45 46# 47####################################################################### 48 49 50