From 4ec7800383ef4ada9056af7d81d272427c77ec3e Mon Sep 17 00:00:00 2001 From: Chuck Murcko Date: Fri, 9 May 1997 09:23:02 +0000 Subject: [PATCH] Redo 'controlling access to proxy' section, noting that Limit block is required, that Files block is required for versions < 1.2b10, and using all allowable methods in the Limit block. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78128 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_proxy.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/manual/mod/mod_proxy.html b/docs/manual/mod/mod_proxy.html index 19a293e69b..a6e339e171 100644 --- a/docs/manual/mod/mod_proxy.html +++ b/docs/manual/mod/mod_proxy.html @@ -301,7 +301,7 @@ control block using the following example:

 <Directory proxy:*>
-<Limit GET>
+<Limit GET PUT POST DELETE CONNECT OPTIONS>
 order deny,allow
 deny from [machines you'd like *not* to allow by IP address or name]
 allow from [machines you'd like to allow by IP address or name]
@@ -309,6 +309,9 @@ allow from [machines you'd like to allow by IP address or name]
 </Directory>
 

+A <Files> block will also work, and is the only method known to work +for all possible URLs in Apache versions earlier than 1.2b10.

+

Using Netscape hostname shortcuts

There is an optional patch to the proxy module to allow Netscape-like -- 2.40.0