You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2005/06/27 22:29:26 UTC

svn commit: r202046 - in /gump/branches/Gump3/webgump/conf: giraffe.conf httpd.conf

Author: leosimons
Date: Mon Jun 27 13:29:25 2005
New Revision: 202046

URL: http://svn.apache.org/viewcvs?rev=202046&view=rev
Log:
Spent a night debugging httpd internals. We cannot use mod_include. Ugh...

Modified:
    gump/branches/Gump3/webgump/conf/giraffe.conf
    gump/branches/Gump3/webgump/conf/httpd.conf

Modified: gump/branches/Gump3/webgump/conf/giraffe.conf
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/webgump/conf/giraffe.conf?rev=202046&r1=202045&r2=202046&view=diff
==============================================================================
--- gump/branches/Gump3/webgump/conf/giraffe.conf (original)
+++ gump/branches/Gump3/webgump/conf/giraffe.conf Mon Jun 27 13:29:25 2005
@@ -27,7 +27,10 @@
     Order allow,deny
     Allow from all
 
-    Options +Includes
-    SetOutputFilter INCLUDES
+    #Apache screws up Last-Modified with the mod_include filter --
+    # they assume that just by activating the filter all Last-Modified
+    # is to be considered invalid, which is @$%^@^ to say the least!
+    #Options +Includes
+    #SetOutputFilter INCLUDES
     AcceptPathInfo On
 </Directory>

Modified: gump/branches/Gump3/webgump/conf/httpd.conf
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/webgump/conf/httpd.conf?rev=202046&r1=202045&r2=202046&view=diff
==============================================================================
--- gump/branches/Gump3/webgump/conf/httpd.conf (original)
+++ gump/branches/Gump3/webgump/conf/httpd.conf Mon Jun 27 13:29:25 2005
@@ -224,7 +224,8 @@
 RewriteCond "RULE2%{ENV:REWRITE_MODE}" =RULE2
 RewriteCond "%{REQUEST_FILENAME}" !-f
 # Specify what bits are webapplications here
-RewriteCond "%{REQUEST_URI}" "^/home"
+RewriteCond "%{REQUEST_URI}" "^/home" [OR]
+RewriteCond "%{REQUEST_URI}" "^/doc"
 #RewriteCond "%{REQUEST_URI}" "^/webapp2" [OR]
 #RewriteCond "%{REQUEST_URI}" "^/webapp3" [OR]
 RewriteRule "^/([^/\.]+/[^/\.]+)(/.*)?$" - [env=REWRITE_MODE:redirection]