debug.conf 967 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. ## log-request-handling allows you to track the request
  12. ## handing inside lighttpd.
  13. ##
  14. #debug.log-request-handling = "enable"
  15. ##
  16. ## log all request headers.
  17. ##
  18. #debug.log-request-header = "enable"
  19. ##
  20. ## similar to log-request-header.
  21. ## but only logs if we encountered an error.
  22. ## (return codes 400 and 5xx)
  23. ##
  24. #debug.log-request-header-on-error = "enable"
  25. ##
  26. ## log the header we send out to the client.
  27. ##
  28. #debug.log-response-header = "enable"
  29. ##
  30. ## log if a file wasnt found in the error log.
  31. ##
  32. #debug.log-file-not-found = "enable"
  33. ##
  34. ## debug conditionals handling
  35. ##
  36. #debug.log-condition-handling = "enable"
  37. #
  38. #######################################################################