Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D6631D4D3 for ; Tue, 9 Oct 2012 11:37:30 +0000 (UTC) Received: (qmail 13342 invoked by uid 500); 9 Oct 2012 11:37:29 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 13126 invoked by uid 500); 9 Oct 2012 11:37:24 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 13097 invoked by uid 99); 9 Oct 2012 11:37:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Oct 2012 11:37:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Oct 2012 11:37:20 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E6F4823889BF; Tue, 9 Oct 2012 11:36:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1395975 - /httpd/httpd/branches/2.2.x/docs/manual/mod/mod_rewrite.xml Date: Tue, 09 Oct 2012 11:36:36 -0000 To: cvs@httpd.apache.org From: humbedooh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121009113636.E6F4823889BF@eris.apache.org> 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 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"