debug.conf 1.0 KB

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