access_log.conf 714 B

123456789101112131415161718192021222324252627
  1. #######################################################################
  2. ##
  3. ## Corresponding documentation:
  4. ##
  5. ## http://www.lighttpd.net/documentation/access.html
  6. ##
  7. server.modules += ( "mod_accesslog" )
  8. ##
  9. ## Default access log.
  10. ##
  11. #accesslog.filename = log_root + "/access.log"
  12. ##
  13. ## The default format produces CLF compatible output.
  14. ## For available parameters see access.txt
  15. ##
  16. #accesslog.format = "%h %l %u %t \"%r\" %b %>s \"%{User-Agent}i\" \"%{Referer}i\""
  17. ##
  18. ## If you want to log to syslog you have to unset the
  19. ## accesslog.use-syslog setting and uncomment the next line.
  20. ##
  21. accesslog.use-syslog = "enable"
  22. #
  23. #######################################################################