You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/10/09 13:36:36 UTC

svn commit: r1395975 - /httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml

Author: humbedooh
Date: Tue Oct  9 11:36:36 2012
New Revision: 1395975

URL: http://svn.apache.org/viewvc?rev=1395975&view=rev
Log:
RewriteLog also supports logging to a pipe, so let's state that.

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml?rev=1395975&r1=1395974&r2=1395975&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml Tue Oct  9 11:36:36 2012
@@ -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>