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