You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2010/06/06 19:24:14 UTC

svn commit: r951907 - /httpd/test/framework/trunk/t/conf/extra.conf.in

Author: sf
Date: Sun Jun  6 17:24:14 2010
New Revision: 951907

URL: http://svn.apache.org/viewvc?rev=951907&view=rev
Log:
Fix config because of removed RewriteLog* directives

Modified:
    httpd/test/framework/trunk/t/conf/extra.conf.in

Modified: httpd/test/framework/trunk/t/conf/extra.conf.in
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/conf/extra.conf.in?rev=951907&r1=951906&r2=951907&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/conf/extra.conf.in (original)
+++ httpd/test/framework/trunk/t/conf/extra.conf.in Sun Jun  6 17:24:14 2010
@@ -169,8 +169,10 @@
 
 <IfModule mod_rewrite.c>
     RewriteEngine On
-    RewriteLog @SERVERROOT@/logs/rewrite_log
-    RewriteLogLevel 9
+    <IfVersion < 2.3.6>
+        RewriteLog @SERVERROOT@/logs/rewrite_log
+        RewriteLogLevel 9
+    </IfVersion>
     <IfDefine !APACHE1>
         <IfVersion < 2.3.4>
             RewriteLock @SERVERROOT@/logs/rewrite_lock
@@ -584,4 +586,4 @@ LimitRequestFields    32
        </IfVersion>
        FilterChain pr49328
    </Directory>
-</IfModule>
\ No newline at end of file
+</IfModule>