view lighttpd/conf.d/access_log.conf @ 64:86ae333bb4c0

Capitalize the class field in database entries. Some logfiles capitalize it and some don't. It will now appear consistently in the database and any database-derived pages. That does not include recent.cgi, whose eventual status is still undecided.
author John "Elwin" Edwards
date Tue, 23 Jun 2015 11:10:46 -0400
parents 70a883519753
children
line wrap: on
line source

#######################################################################
##
## Corresponding documentation:
##
## http://www.lighttpd.net/documentation/access.html
##
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"

#
#######################################################################