]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/httpd/mod_log_config.conf
Starte SSH-Server beim Boot.
[people/pmueller/ipfire-2.x.git] / config / httpd / mod_log_config.conf
CommitLineData
90c973a6
MT
1#
2# The following directives define some format nicknames for use with
3# a CustomLog directive.
4#
5
6#
7# Format string: Nickname:
8#
9LogFormat "%h %l %u %t \"%r\" %>s %b" common
10LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost_common
11LogFormat "%{Referer}i -> %U" referer
12LogFormat "%{User-agent}i" agent
13LogFormat "%h %l %u %t \"%r\" %>s %b \
14\"%{Referer}i\" \"%{User-Agent}i\"" combined
15LogFormat "%v %h %l %u %t \"%r\" %>s %b \
16\"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
17
18# To use %I and %O, you need to enable mod_logio
19<IfModule mod_logio.c>
20LogFormat "%h %l %u %t \"%r\" %>s %b \
21\"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
22</IfModule>
23
24# Use one of these when you want a compact non-error SSL logfile on a virtual
25# host basis:
26<IfModule mod_ssl.c>
27Logformat "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \
28\"%r\" %b" ssl_common
29Logformat "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \
30\"%r\" %b \"%{Referer}i\" \"%{User-Agent}i\"" ssl_combined
31</IfModule>