annotate lighttpd/conf.d/access_log.conf @ 72:1d8dc3ed22cf

Restore the default size of the high score list. In an era of megabyte JavaScript libraries, ten lines of text is not too much.
author John "Elwin" Edwards
date Sun, 20 Mar 2016 07:59:22 -0400
parents 70a883519753
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
54
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
1 #######################################################################
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
2 ##
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
3 ## Corresponding documentation:
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
4 ##
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
5 ## http://www.lighttpd.net/documentation/access.html
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
6 ##
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
7 server.modules += ( "mod_accesslog" )
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
8
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
9 ##
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
10 ## Default access log.
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
11 ##
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
12 accesslog.filename = log_root + "/access.log"
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
13
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
14 ##
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
15 ## The default format produces CLF compatible output.
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
16 ## For available parameters see access.txt
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
17 ##
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
18 #accesslog.format = "%h %l %u %t \"%r\" %b %>s \"%{User-Agent}i\" \"%{Referer}i\""
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
19
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
20 ##
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
21 ## If you want to log to syslog you have to unset the
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
22 ## accesslog.use-syslog setting and uncomment the next line.
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
23 ##
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
24 #accesslog.use-syslog = "enable"
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
25
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
26 #
70a883519753 Add more lighttpd configuration files.
John "Elwin" Edwards
parents:
diff changeset
27 #######################################################################