~ubuntu-branches/ubuntu/oneiric/lighttpd/oneiric

« back to all changes in this revision

Viewing changes to doc/config/conf.d/debug.conf

  • Committer: Bazaar Package Importer
  • Author(s): Lorenzo De Liso
  • Date: 2010-10-15 21:01:50 UTC
  • mfrom: (6.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20101015210150-edjmolu35qt56evm
Tags: 1.4.28-1ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/control: 
    + libgamin-dev rather than libfam-dev to fix startup warning.
    + debhelper Build-depends bumped to (>= 7.0.50) for
      overrides in rules file. 
  - debian/index.html: s/Debian/Ubuntu/g branding on the default page.
  - Added a UFW profile set:
    + debian/lighttpd.dirs: added etc/ufw/applications.d
    + debian/rules: install the ufw profile.
    + debian/control: Suggests on ufw.
  - Add lighttpd-dev package:
    + debian/control: Added lighttpd-dev package; Build-depends on
      automake, libtool
    + debian/lighttpd-dev.install: Added.
  - debian/rules:
    + Add override_dh_installinit to set "defaults 91 09" to not start
      before apache2 but in the same runlevel with the same priority.
  - debian/patches/build-dev-package.patch: Updated
  - debian/lighttpd.conf: Comment 'use-ipv6.pl' by default, which causes
    failure to bind port in ipv4 (LP: #551211)
* debian/patches/build-dev-package.patch: updated
* Dropped changes:
  - debian/lighttpd.init: clean environment; Check syntax during start/reload:
    this change has been applied in the debian package
  - syntax_check function defined in init script. (LP: #600767): this change
    has been applied in the debian package
  - debian/patches/build-dev-package.patch: Updated: patch updated newly 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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