You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Joe Orton <jo...@redhat.com> on 2000/11/02 13:14:59 UTC

[PATCH] PROPFIND allowed in default httpd.conf

A pretty minor correction: I think you generally don't want to enable
PROPFIND access on public_html areas to unauthenticated clients, so the
examples in conf/httpd.conf* are wrong:

Index: httpd.conf-dist
===================================================================
RCS file: /home/joe/lib/cvsroot/apache-1.3/conf/httpd.conf-dist,v
retrieving revision 1.65
diff -u -r1.65 httpd.conf-dist
--- httpd.conf-dist	2000/09/28 13:12:36	1.65
+++ httpd.conf-dist	2000/11/02 12:08:37
@@ -343,11 +343,11 @@
 #<Directory /home/*/public_html>
 #    AllowOverride FileInfo AuthConfig Limit
 #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
-#    <Limit GET POST OPTIONS PROPFIND>
+#    <Limit GET POST OPTIONS>
 #        Order allow,deny
 #        Allow from all
 #    </Limit>
-#    <LimitExcept GET POST OPTIONS PROPFIND>
+#    <LimitExcept GET POST OPTIONS>
 #        Order deny,allow
 #        Deny from all
 #    </LimitExcept>
Index: httpd.conf-dist-nw
===================================================================
RCS file: /home/joe/lib/cvsroot/apache-1.3/conf/httpd.conf-dist-nw,v
retrieving revision 1.4
diff -u -r1.4 httpd.conf-dist-nw
--- httpd.conf-dist-nw	2000/08/28 14:40:23	1.4
+++ httpd.conf-dist-nw	2000/11/02 12:09:04
@@ -300,11 +300,11 @@
 #<Directory /home/*/public_html>
 #    AllowOverride FileInfo AuthConfig Limit
 #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
-#    <Limit GET POST OPTIONS PROPFIND>
+#    <Limit GET POST OPTIONS>
 #        Order allow,deny
 #        Allow from all
 #    </Limit>
-#    <LimitExcept GET POST OPTIONS PROPFIND>
+#    <LimitExcept GET POST OPTIONS>
 #        Order deny,allow
 #        Deny from all
 #    </LimitExcept>
Index: httpd.conf-dist-win
===================================================================
RCS file: /home/joe/lib/cvsroot/apache-1.3/conf/httpd.conf-dist-win,v
retrieving revision 1.46
diff -u -r1.46 httpd.conf-dist-win
--- httpd.conf-dist-win	2000/10/08 06:16:33	1.46
+++ httpd.conf-dist-win	2000/11/02 12:08:46
@@ -331,11 +331,11 @@
 #<Directory "@@ServerRoot@@/users">
 #    AllowOverride FileInfo AuthConfig Limit
 #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
-#    <Limit GET POST OPTIONS PROPFIND>
+#    <Limit GET POST OPTIONS>
 #        Order allow,deny
 #        Allow from all
 #    </Limit>
-#    <LimitExcept GET POST OPTIONS PROPFIND>
+#    <LimitExcept GET POST OPTIONS>
 #        Order deny,allow
 #        Deny from all
 #    </LimitExcept>