You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
872 B
Plaintext
32 lines
872 B
Plaintext
#######################################################################
|
|
##
|
|
## Corresponding documentation:
|
|
##
|
|
## https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModAccesslog
|
|
##
|
|
server.modules += ( "mod_accesslog" )
|
|
|
|
##
|
|
## Default access log.
|
|
##
|
|
accesslog.filename = log_root + "/access.log"
|
|
|
|
##
|
|
## The default format produces CLF compatible output.
|
|
## For available parameters see access.txt
|
|
##
|
|
#accesslog.format = "%h %l %u %t \"%r\" %b %>s \"%{User-Agent}i\" \"%{Referer}i\""
|
|
|
|
##
|
|
## If you want to log to syslog you have to unset the
|
|
## accesslog.use-syslog setting and uncomment the next line.
|
|
##
|
|
#accesslog.use-syslog = "enable"
|
|
##
|
|
## syslog level defaults to 6 ("Informational")
|
|
## https://en.wikipedia.org/wiki/Syslog#Severity_level
|
|
#accesslog.syslog-level = 6
|
|
|
|
#
|
|
#######################################################################
|