view lighttpd/conf.d/debug.conf @ 55:e421ea2519ec

dgamelaunch: define user/group by name instead of UID/GID. The user and group might not be created with the UID and GID expected, so it is better to use names. They can be changed to numeric values after installation.
author John "Elwin" Edwards
date Sun, 11 May 2014 08:32:31 -0700
parents 70a883519753
children
line wrap: on
line source

#######################################################################
##
##  Debug options
## ---------------
##
## 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"

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