From: Daniel Gruno Date: Tue, 9 Oct 2012 11:36:36 +0000 (+0000) Subject: RewriteLog also supports logging to a pipe, so let's state that. X-Git-Tag: 2.2.24~115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ba86a62a431a09541f57260f983128def60e76d;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index 9d714156cd6..4e45681a092 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -229,7 +229,7 @@ later RewriteLog Sets the name of the file used for logging rewrite engine processing -RewriteLog file-path +RewriteLog file-path|pipe server configvirtual host @@ -278,7 +278,11 @@ the user that starts the server. Example +# Log to a file: RewriteLog "/usr/local/var/apache/logs/rewrite.log" + +# Log to a pipe: +RewriteLog "|/path/to/parser.pl"