Annotation of embedaddon/lighttpd/doc/config/conf.d/access_log.conf, revision 1.1.1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>