0N/A<?
xml version="1.0"?>
0N/A<!-- $LastChangedRevision$ --> 2362N/A Licensed to the Apache Software Foundation (ASF) under one or more 0N/A contributor license agreements. See the NOTICE file distributed with 2362N/A this work for additional information regarding copyright ownership. 0N/A The ASF licenses this file to You under the Apache License, Version 2.0 0N/A (the "License"); you may not use this file except in compliance with 0N/A the License. You may obtain a copy of the License at 0N/A Unless required by applicable law or agreed to in writing, software 0N/A distributed under the License is distributed on an "AS IS" BASIS, 0N/A WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 0N/A See the License for the specific language governing permissions and 0N/A limitations under the License. 0N/A<
name>mod_log_config</
name>
0N/A<
description>Logging of the requests made to the server</
description>
0N/A<
status>Base</
status>
2667N/A<
identifier>log_config_module</
identifier>
2667N/A <
p>This module provides for flexible logging of client
2667N/A requests. Logs are written in a customizable format, and may be
2667N/A written directly to a file, or to an external program.
0N/A Conditional logging is provided so that individual requests may
0N/A be included or excluded from the logs based on characteristics
0N/A <
p>Three directives are provided by this module:
2159N/A <
directive module="mod_log_config">TransferLog</
directive> to create
2159N/A a log file, <
directive module="mod_log_config">LogFormat</
directive>
0N/A to set a custom format, and <
directive module="mod_log_config" 0N/A >CustomLog</
directive> to define a log file and format in one
0N/A step. The <
directive>TransferLog</
directive> and <
directive 0N/A >CustomLog</
directive> directives can be used multiple times in each
0N/A server to cause each request to be logged to multiple files.</
p>
0N/A<
section id="formats"><
title>Custom Log Formats</
title>
0N/A <
p>The format argument to the <
directive module="mod_log_config" 0N/A >LogFormat</
directive> and <
directive module="mod_log_config" 0N/A >CustomLog</
directive> directives is a string. This string is
0N/A used to log each request to the log file. It can contain literal
0N/A characters copied into the log files and the C-style control
0N/A characters "\n" and "\t" to represent new-lines and tabs.
0N/A Literal quotes and backslashes should be escaped with
0N/A <
p>The characteristics of the request itself are logged by
0N/A placing "<
code>%</
code>" directives in the format string, which are
0N/A replaced in the log file by the values as follows:</
p>
0N/A <
table border="1" style="zebra">
0N/A <
columnspec><
column width=".2"/><
column width=".8"/></
columnspec>
0N/A <
tr><
th>Format String</
th>
0N/A <
th>Description</
th></
tr>
0N/A <
tr><
td><
code>%%</
code></
td>
0N/A <
td>The percent sign.</
td></
tr>
0N/A <
tr><
td><
code>%a</
code></
td>
0N/A <
td>Client IP address of the request (see the
0N/A <
module>mod_remoteip</
module> module).</
td></
tr>
0N/A <
tr><
td><
code>%{c}a</
code></
td>
0N/A <
td>Underlying peer IP address of the connection (see the
0N/A <
module>mod_remoteip</
module> module).</
td></
tr>
0N/A <
tr><
td><
code>%A</
code></
td>
0N/A <
td>Local IP-address.</
td></
tr>
0N/A <
tr><
td><
code>%B</
code></
td>
0N/A <
td>Size of response in bytes, excluding HTTP headers.</
td></
tr>
0N/A <
tr><
td><
code>%b</
code></
td>
0N/A <
td>Size of response in bytes, excluding HTTP headers. In CLF format, <
em>
i.e.</
em>
0N/A a '<
code>-</
code>' rather than a 0 when no bytes are sent.</
td></
tr>
0N/A <
tr><
td><
code>%{<
var>VARNAME</
var>}C</
code></
td>
0N/A <
td>The contents of cookie <
var>VARNAME</
var> in the request sent
0N/A to the server. Only version 0 cookies are fully supported.</
td></
tr>
0N/A <
tr><
td><
code>%D</
code></
td>
0N/A <
td>The time taken to serve the request, in microseconds.</
td></
tr>
0N/A <
tr><
td><
code>%{<
var>VARNAME</
var>}e</
code></
td>
0N/A <
td>The contents of the environment variable
0N/A <
var>VARNAME</
var>.</
td></
tr>
0N/A <
tr><
td><
code>%f</
code></
td>
0N/A <
td>Filename.</
td></
tr>
0N/A <
tr><
td><
code>%h</
code></
td>
0N/A <
td>Remote hostname. Will log the IP address if <
directive 0N/A module="core">HostnameLookups</
directive> is set to
0N/A <
code>Off</
code>, which is the default. If it logs the hostname
0N/A for only a few hosts, you probably have access control
0N/A directives mentioning them by name. See <
a 0N/A documentation</
a>.</
td></
tr>
0N/A <
tr><
td><
code>%H</
code></
td>
0N/A <
td>The request protocol.</
td></
tr>
0N/A <
tr><
td><
code>%{<
var>VARNAME</
var>}i</
code></
td>
0N/A <
td>The contents of <
code><
var>VARNAME</
var>:</
code> header line(s)
0N/A in the request sent to the server. Changes made by other
0N/A modules (
e.g. <
module>mod_headers</
module>) affect this. If you're
0N/A interested in what the request header was prior to when most
0N/A modules would have modified it, use <
module>mod_setenvif</
module>
2667N/A to copy the header into an internal environment variable and log
2667N/A that value with the <
code>%{<
var>VARNAME</
var>}e</
code> described
2667N/A <
tr><
td><
code>%k</
code></
td>
2667N/A <
td>Number of keepalive requests handled on this connection. Interesting if
2667N/A <
directive module="core">KeepAlive</
directive> is being used, so that,
2667N/A for example, a '1' means the first keepalive request after the initial
2667N/A one, '2' the second, etc...;
2667N/A otherwise this is always 0 (indicating the initial request).</
td></
tr>
2667N/A <
tr><
td><
code>%l</
code></
td>
2667N/A <
td>Remote logname (from identd, if supplied). This will return a
2667N/A dash unless <
module>mod_ident</
module> is present and <
directive 2667N/A module="mod_ident">IdentityCheck</
directive> is set
2667N/A <
tr><
td><
code>%L</
code></
td>
2667N/A <
td>The request log ID from the error log (or '-' if nothing has been
2667N/A logged to the error log for this request). Look for the
2667N/A matching error log line to see what request caused what error.</
td></
tr>
2667N/A <
tr><
td><
code>%m</
code></
td>
2667N/A <
td>The request method.</
td></
tr>
2667N/A <
tr><
td><
code>%{<
var>VARNAME</
var>}n</
code></
td>
2667N/A <
td>The contents of note <
var>VARNAME</
var> from another
2667N/A <
tr><
td><
code>%{<
var>VARNAME</
var>}o</
code></
td>
2667N/A <
td>The contents of <
code><
var>VARNAME</
var>:</
code> header line(s)
0N/A <
tr><
td><
code>%p</
code></
td>
0N/A <
td>The canonical port of the server serving the request.</
td></
tr>
2667N/A <
tr><
td><
code>%{<
var>format</
var>}p</
code></
td>
0N/A <
td>The canonical port of the server serving the request, or the
2667N/A server's actual port, or the client's actual port. Valid formats
0N/A are <
code>canonical</
code>, <
code>local</
code>, or <
code>remote</
code>.
0N/A <
tr><
td><
code>%P</
code></
td>
0N/A <
td>The process ID of the child that serviced the request.</
td></
tr>
0N/A <
tr><
td><
code>%{<
var>format</
var>}P</
code></
td>
2159N/A <
td>The process ID or thread ID of the child that serviced the
2159N/A request. Valid formats are <
code>pid</
code>, <
code>tid</
code>,
2159N/A and <
code>hextid</
code>. <
code>hextid</
code> requires APR 1.2.0 or
2159N/A <
tr><
td><
code>%q</
code></
td>
2159N/A <
td>The query string (prepended with a <
code>?</
code> if a query
2159N/A string exists, otherwise an empty string).</
td></
tr>
2159N/A <
tr><
td><
code>%r</
code></
td>
2159N/A <
td>First line of request.</
td></
tr>
2159N/A <
tr><
td><
code>%R</
code></
td>
2159N/A <
td>The handler generating the response (if any).</
td></
tr>
2159N/A <
tr><
td><
code>%s</
code></
td>
2159N/A <
td>Status. For requests that have been internally redirected, this is
2159N/A the status of the <
em>original</
em> request. Use <
code>%>s</
code>
2159N/A for the final status.</
td></
tr>
2159N/A <
tr><
td><
code>%t</
code></
td>
2159N/A <
td>Time the request was received, in the format <
code>[
18/
Sep/
2011:19:18:28 -0400]</
code>.
2159N/A The last number indicates the timezone offset from GMT</
td></
tr>
2159N/A <
tr><
td><
code>%{<
var>format</
var>}t</
code></
td>
2159N/A <
td>The time, in the form given by format, which should be in
2159N/A an extended <
code>strftime(3)</
code> format (potentially localized).
2159N/A If the format starts with <
code>begin:</
code> (default) the time is taken
2159N/A at the beginning of the request processing. If it starts with
2159N/A <
code>end:</
code> it is the time when the log entry gets written,
2159N/A close to the end of the request processing. In addition to the formats
0N/A supported by <
code>strftime(3)</
code>, the following format tokens are
0N/A <
tr><
td><
code>sec</
code></
td><
td>number of seconds since the Epoch</
td></
tr>
2159N/A <
tr><
td><
code>msec</
code></
td><
td>number of milliseconds since the Epoch</
td></
tr>
2159N/A <
tr><
td><
code>usec</
code></
td><
td>number of microseconds since the Epoch</
td></
tr>
2159N/A <
tr><
td><
code>msec_frac</
code></
td><
td>millisecond fraction</
td></
tr>
2159N/A <
tr><
td><
code>usec_frac</
code></
td><
td>microsecond fraction</
td></
tr>
2159N/A These tokens can not be combined with each other or <
code>strftime(3)</
code>
0N/A formatting in the same format string. You can use multiple
0N/A <
code>%{<
var>format</
var>}t</
code> tokens instead.
2159N/A <
tr><
td><
code>%T</
code></
td>
0N/A <
td>The time taken to serve the request, in seconds.</
td></
tr>
2925N/A <
tr><
td><
code>%u</
code></
td>
2925N/A <
td>Remote user if the request was authenticated. May be bogus if return status
2925N/A (<
code>%s</
code>) is 401 (unauthorized).</
td></
tr>
0N/A <
tr><
td><
code>%U</
code></
td>
0N/A <
td>The URL path requested, not including any query string.</
td></
tr>
0N/A <
tr><
td><
code>%v</
code></
td>
0N/A <
td>The canonical <
directive module="core">ServerName</
directive>
0N/A of the server serving the request.</
td></
tr>
0N/A <
tr><
td><
code>%V</
code></
td>
0N/A <
td>The server name according to the <
directive module="core" 0N/A >UseCanonicalName</
directive> setting.</
td></
tr>
0N/A <
tr><
td><
code>%X</
code></
td>
0N/A <
td>Connection status when response is completed:
0N/A <
columnspec><
column width=".2"/><
column width=".6"/></
columnspec>
0N/A <
tr><
td><
code>X</
code> =</
td>
0N/A <
td>Connection aborted before the response completed.</
td></
tr>
0N/A <
tr><
td><
code>+</
code> =</
td>
0N/A <
td>Connection may be kept alive after the response is
0N/A <
tr><
td><
code>-</
code> = </
td>
0N/A <
td>Connection will be closed after the response is
0N/A <
tr><
td><
code>%I</
code></
td>
0N/A <
td>Bytes received, including request and headers. Cannot be zero.
0N/A You need to enable <
module>mod_logio</
module> to use this.</
td></
tr>
0N/A <
tr><
td><
code>%O</
code></
td>
0N/A <
td>Bytes sent, including headers. Cannot be zero. You need to
0N/A enable <
module>mod_logio</
module> to use this.</
td></
tr>
0N/A <
tr><
td><
code>%S</
code></
td>
0N/A <
td>Bytes transferred (received and sent), including request and headers,
0N/A cannot be zero. This is the combination of %I and %O. You need to
0N/A enable <
module>mod_logio</
module> to use this.</
td></
tr>
0N/A <
tr><
td><
code>%{<
var>VARNAME</
var>}^ti</
code></
td>
0N/A <
td>The contents of <
code><
var>VARNAME</
var>:</
code> trailer line(s)
0N/A in the request sent to the server. </
td></
tr>
0N/A <
tr><
td><
code>%{<
var>VARNAME</
var>}^to</
code></
td>
0N/A <
td>The contents of <
code><
var>VARNAME</
var>:</
code> trailer line(s)
0N/A in the response sent from the server. </
td></
tr>
0N/A <
section id="modifiers"><
title>Modifiers</
title>
0N/A <
p>Particular items can be restricted to print only for
0N/A responses with specific HTTP status codes by placing a
0N/A comma-separated list of status codes immediately following the
0N/A "%". The status code list may be preceded by a "<
code>!</
code>" to
0N/A indicate negation.</
p>
0N/A <
table border="1" style="zebra">
0N/A <
columnspec><
column width=".2"/><
column width=".8"/></
columnspec>
0N/A <
tr><
th>Format String</
th>
0N/A <
th>Meaning</
th></
tr>
0N/A <
td><
code>%400,501{User-agent}i</
code></
td>
0N/A <
td>Logs <
code>User-agent</
code> on 400 errors and 501 errors only. For
0N/A other status codes, the literal string <
code>"-"</
code> will be
0N/A <
tr><
td><
code>%!200,304,302{Referer}i</
code></
td>
0N/A <
td>Logs <
code>Referer</
code> on all requests that do
0N/A <
em>not</
em> return one of the three specified codes,
0N/A "<
code>-</
code>" otherwise.
0N/A <
p>The modifiers "<" and ">" can be used for requests that
0N/A have been internally redirected to choose whether the original
0N/A or final (respectively) request should be consulted. By
0N/A default, the <
code>%</
code> directives <
code>%s, %U, %T,
0N/A %D,</
code> and <
code>%r</
code> look at the original request
0N/A while all others look at the final request. So for example,
0N/A <
code>%>s</
code> can be used to record the final status of
0N/A the request and <
code>%<u</
code> can be used to record the
0N/A original authenticated user on a request that is internally
0N/A redirected to an unauthenticated resource.</
p>
0N/A <
section id="format-notes"><
title>Format Notes</
title>
0N/A <
p>For security reasons, starting with version 2.0.46,
0N/A non-printable and other special characters in <
code>%r</
code>,
0N/A <
code>%i</
code> and <
code>%o</
code> are escaped using
0N/A <
code>\x<
var>hh</
var></
code> sequences, where <
var>hh</
var>
0N/A stands for the hexadecimal representation of the raw
0N/A byte. Exceptions from this rule are <
code>"</
code> and
0N/A <
code>\</
code>, which are escaped by prepending a backslash, and
0N/A all whitespace characters, which are written in their C-style
0N/A notation (<
code>\n</
code>, <
code>\t</
code>, etc). In versions
0N/A prior to 2.0.46, no escaping was performed on these strings so
0N/A you had to be quite careful when dealing with raw log files.</
p>
0N/A <
p>Since httpd 2.0, unlike 1.3, the <
code>%b</
code> and
0N/A <
code>%B</
code> format strings do not represent the number of
0N/A bytes sent to the client, but simply the size in bytes of the
0N/A HTTP response (which will differ, for instance, if the
0N/A connection is aborted, or if SSL is used). The <
code>%O</
code>
0N/A format provided by <
module>mod_logio</
module> will log the
0N/A actual number of bytes sent over the network.</
p>
0N/A <
p>Note: <
module>mod_cache</
module> is implemented as a
quick-handler and not as a standard handler. Therefore, the
<
code>%R</
code> format string will not return any handler
information when content caching is involved.</
p>
<
p>Note: The '^' character at the start of three-character formats
has no significance, but it must be the first character of any newly
added three-character format to avoid potential conflicts with log
formats that use literals adjacent to a format specifier, such as
<
section id="examples"><
title>Examples</
title>
<
p>Some commonly used log format strings are:</
p>
<
dt>Common Log Format (CLF)</
dt>
<
dd><
code>"%h %l %u %t \"%r\" %>s %b"</
code></
dd>
<
dt>Common Log Format with Virtual Host</
dt>
<
dd><
code>"%v %h %l %u %t \"%r\" %>s %b"</
code></
dd>
<
dd><
code>"%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"
\"%{User-agent}i\""</
code></
dd>
<
dt>Referer log format</
dt>
<
dd><
code>"%{Referer}i -> %U"</
code></
dd>
<
dt>Agent (Browser) log format</
dt>
<
dd><
code>"%{User-agent}i"</
code></
dd>
<
p>You can use the <
code>%{format}t</
code> directive multiple
times to build up a time format using the extended format tokens
like <
code>msec_frac</
code>:</
p>
<
dt>Timestamp including milliseconds</
dt>
<
dd><
code>"%{%d/%b/%Y %T}t.%{msec_frac}t %{%z}t"</
code></
dd>
<
section id="security"><
title>Security Considerations</
title>
document for details on why your security could be compromised
if the directory where logfiles are stored is writable by
anyone other than the user that starts the server.</
p>
<
name>BufferedLogs</
name>
<
description>Buffer log entries in memory before writing to disk</
description>
<
syntax>BufferedLogs On|Off</
syntax>
<
default>BufferedLogs Off</
default>
<
contextlist><
context>server config</
context></
contextlist>
<
p>The <
directive>BufferedLogs</
directive> directive causes
<
module>mod_log_config</
module> to store several log entries in
memory and write them together to disk, rather than writing them
after each request. On some systems, this may result in more
efficient disk access and hence higher performance. It may be
set only once for the entire server; it cannot be configured
<
note>This directive should be used with caution as a crash might
cause loss of logging data.</
note>
<
description>Sets filename and format of log file</
description>
<
syntax>CustomLog <
var>file</
var>|<
var>pipe</
var>
<
var>format</
var>|<
var>nickname</
var>
[env=[!]<
var>environment-variable</
var>|
expr=<
var>expression</
var>]</
syntax>
<
contextlist><
context>server config</
context><
context>virtual host</
context>
<
p>The <
directive>CustomLog</
directive> directive is used to
log requests to the server. A log format is specified, and the
logging can optionally be made conditional on request
characteristics using environment variables.</
p>
<
p>The first argument, which specifies the location to which
the logs will be written, can take one of the following two
<
dd>A filename, relative to the <
directive module="core" >ServerRoot</
directive>.</
dd>
<
dd>The pipe character "<
code>|</
code>", followed by the path
to a program to receive the log information on its standard
input. See the notes on <
a href="/logs.html#piped">piped logs</
a>
<
note type="warning"><
title>Security:</
title>
<
p>If a program is used, then it will be run as the user who
started <
program>httpd</
program>. This will be root if the server was
started by root; be sure that the program is secure.</
p>
<
note type="warning"><
title>Note</
title>
<
p>When entering a file path on non-Unix platforms, care should be taken
to make sure that only forward slashed are used even though the platform
may allow the use of back slashes. In general it is a good idea to always
use forward slashes throughout the configuration files.</
p>
<
p>The second argument specifies what will be written to the
log file. It can specify either a <
var>nickname</
var> defined by
a previous <
directive module="mod_log_config">LogFormat</
directive>
directive, or it can be an explicit <
var>format</
var> string as
described in the <
a href="#formats">log formats</
a> section.</
p>
<
p>For example, the following two sets of directives have
exactly the same effect:</
p>
<
highlight language="config">
# CustomLog with format nickname
LogFormat "%h %l %u %t \"%r\" %>s %b" common
# CustomLog with explicit format string
<
p>The third argument is optional and controls whether or
not to log a particular request. The condition can be the
presence or absence (in the case of a '<
code>env=!<
var>name</
var></
code>'
clause) of a particular variable in the server
<
a href="/env.html">environment</
a>. Alternatively, the condition
can be expressed as arbitrary boolean <
a href="/expr.html" >expression</
a>. If the condition is not satisfied, the request
will not be logged. References to HTTP headers in the expression
will not cause the header names to be added to the Vary header.</
p>
<
p>Environment variables can be set on a per-request
basis using the <
module>mod_setenvif</
module>
and/
or <
module>mod_rewrite</
module> modules. For
example, if you want to record requests for all GIF
images on your server in a separate logfile but not in your main
<
highlight language="config">
SetEnvIf Request_URI \.gif$ gif-image
<
p>Or, to reproduce the behavior of the old RefererIgnore
directive, you might use the following:</
p>
<
highlight language="config">
SetEnvIf Referer example\.com localreferer
<
description>Describes a format for use in a log file</
description>
<
syntax>LogFormat <
var>format</
var>|<
var>nickname</
var>
[<
var>nickname</
var>]</
syntax>
<
default>LogFormat "%h %l %u %t \"%r\" %>s %b"</
default>
<
contextlist><
context>server config</
context><
context>virtual host</
context>
<
p>This directive specifies the format of the access log
<
p>The <
directive>LogFormat</
directive> directive can take one of two
forms. In the first form, where only one argument is specified,
this directive sets the log format which will be used by logs
specified in subsequent <
directive>TransferLog</
directive>
directives. The single argument can specify an explicit
<
var>format</
var> as discussed in the <
a href="#formats">custom log
formats</
a> section above. Alternatively, it can use a
<
var>nickname</
var> to refer to a log format defined in a
previous <
directive>LogFormat</
directive> directive as described
<
p>The second form of the <
directive>LogFormat</
directive>
directive associates an explicit <
var>format</
var> with a
<
var>nickname</
var>. This <
var>nickname</
var> can then be used in
subsequent <
directive>LogFormat</
directive> or
<
directive module="mod_log_config">CustomLog</
directive> directives
rather than repeating the entire format string. A
<
directive>LogFormat</
directive> directive that defines a nickname
<
strong>does nothing else</
strong> -- that is, it <
em>only</
em>
defines the nickname, it doesn't actually apply the format and make
it the default. Therefore, it will not affect subsequent
<
directive module="mod_log_config">TransferLog</
directive> directives.
In addition, <
directive>LogFormat</
directive> cannot use one nickname
to define another nickname. Note that the nickname should not contain
percent signs (<
code>%</
code>).</
p>
<
example><
title>Example</
title>
<
highlight language="config">
LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost_common
<
description>Specify location of a log file</
description>
<
syntax>TransferLog <
var>file</
var>|<
var>pipe</
var></
syntax>
<
contextlist><
context>server config</
context><
context>virtual host</
context>
<
p>This directive has exactly the same arguments and effect as
the <
directive module="mod_log_config">CustomLog</
directive>
directive, with the exception that it does not allow the log format
to be specified explicitly or for conditional logging of requests.
Instead, the log format is determined by the most recently specified
<
directive module="mod_log_config">LogFormat</
directive> directive
which does not define a nickname. Common Log Format is used if no
other format has been specified.</
p>
<
example><
title>Example</
title>
<
highlight language="config">
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\""