annotate lighttpd/conf.d/access_log.conf @ 66:6542a7cf826b

Fix links from player pages to the ttyrec archive. RogueGame.getPlayer() was setting the "name" field to self.uname instead of the player's name. Bugs like this are why I need to set up an actual testing server.
author John "Elwin" Edwards
date Thu, 06 Aug 2015 17:07:40 -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 #######################################################################