summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/debug.conf
blob: d05d9dfa09905d60aa80757a22556605deb98063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#######################################################################
##
##  Debug options
## ---------------
##
## See https://redmine.lighttpd.net/projects/lighttpd/wiki/DebugVariables
##
## Enable those options for debugging the behavior
##
## The settings can be set per location/vhost.
## 

## 
## log-request-handling allows you to track the request
## handing inside lighttpd. 
##
#debug.log-request-handling        = "enable"

## 
## log all request headers. 
##
#debug.log-request-header          = "enable"

## 
## similar to log-request-header.
## but only logs if we encountered an error.
## (return codes 400 and 5xx)
##
#debug.log-request-header-on-error = "enable"

## 
## log the header we send out to the client.
##
#debug.log-response-header         = "enable"

## 
## log if a file wasnt found in the error log.
##
#debug.log-file-not-found          = "enable"

## 
## debug conditionals handling
##
#debug.log-condition-handling      = "enable"

#
#######################################################################