Commit 04d380aa authored by Daniel Gruno's avatar Daniel Gruno
Browse files

RewriteLog also supports logging to a pipe, so let's state that.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1395975 13f79535-47bb-0310-9956-ffa450edef68
parent 38c0af58
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -229,7 +229,7 @@ later</compatibility>
<name>RewriteLog</name>
<description>Sets the name of the file used for logging rewrite engine
processing</description>
<syntax>RewriteLog <em>file-path</em></syntax>
<syntax>RewriteLog <em>file-path|pipe</em></syntax>
<contextlist><context>server config</context><context>virtual host</context>
</contextlist>

@@ -278,7 +278,11 @@ the user that starts the server.
</note>

<example><title>Example</title>
# Log to a file:
RewriteLog "/usr/local/var/apache/logs/rewrite.log"

# Log to a pipe:
RewriteLog "|/path/to/parser.pl"
</example>

</usage>