one of the guys over here stumbled over a map_to_storage gotcha/bug.

the problem is that in the default httpd.conf file the 'Options' is
in a 'Directory'. Now if the page is not served from the file system
mod_jk/mod_proxy then the 'Options' directory config is not run.
(and the default option was set to 'ALL')

the change should be something like this perhaps (haven't checked it for
validity)
or at least change the 'Options' to be in a <Location /> tag

..Ian

Index: docs/conf/httpd-std.conf
 ===============================================================
RCS file: /home/cvs/httpd-2.0/docs/conf/httpd-std.conf,v
retrieving revision 1.48
diff -u -r1.48 httpd-std.conf
--- docs/conf/httpd-std.conf    2001/09/06 18:27:56     1.48
+++ docs/conf/httpd-std.conf    2001/09/12 22:38:54
@@ -301,7 +301,7 @@
 #
 # This should be changed to whatever you set DocumentRoot to.
 #
-<Directory "@@ServerRoot@@/htdocs">
+<Location "/">
 
 #
 # This may also be "None", "All", or any combination of "Indexes",
@@ -334,7 +334,7 @@
     AddHandler type-map var
     DirectoryIndex index.html index.html.var
 
-</Directory>
+</Location>

-- 
Ian Holsman
Performance Measurement & Analysis
CNET Networks    -    415 364-8608

Reply via email to