]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
RewriteLog also supports logging to a pipe, so let's state that.
authorDaniel Gruno <humbedooh@apache.org>
Tue, 9 Oct 2012 11:36:36 +0000 (11:36 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Tue, 9 Oct 2012 11:36:36 +0000 (11:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1395975 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_rewrite.xml

index 9d714156cd6bb517facf4ab70c2ef7ea9f1aab7b..4e45681a092bd0a6fdec6052aa2ea34f9da93bad 100644 (file)
@@ -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>