]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd-mod_accesslog.conf
- combined log example
[packages/lighttpd.git] / lighttpd-mod_accesslog.conf
1 # accesslog module.
2 #
3 # Documentation: http://www.lighttpd.net/documentation/accesslog.html
4
5 server.modules += (
6         "mod_accesslog"
7 )
8
9 accesslog.filename = "/var/log/lighttpd/access.log"
10
11 # Lighttpd default
12 #accesslog.format = "%h %V %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\""
13
14 # CLF
15 accesslog.format = "%h %l %u %t \"%r\" %>s %b"
16
17 # Combined Log
18 #accesslog.format = "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\""
19
20 # CLF + virtualhost
21 #accesslog.format = "%h %l %u %t \"%r\" %>s %b %V"
This page took 0.644319 seconds and 4 git commands to generate.