From 0172d4b74641cfb5a613f9241a7ed53fdde82e6a Mon Sep 17 00:00:00 2001 From: Chuck Murcko Date: Mon, 21 Apr 1997 03:12:06 +0000 Subject: [PATCH] In view of lack of response to patching http_core.c to handle proxy: change the access example to use block instead of . git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77944 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_proxy.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/manual/mod/mod_proxy.html b/docs/manual/mod/mod_proxy.html index 52e389dce8..0332ee6e6c 100644 --- a/docs/manual/mod/mod_proxy.html +++ b/docs/manual/mod/mod_proxy.html @@ -296,17 +296,17 @@ disables caching completely.

Controlling access to your proxy

-You can control who can access your proxy via the normal <Directory> +You can control who can access your proxy via the normal <Files> control block using the following example:

-<Directory proxy:*>
+<Files proxy:*>
 <Limit GET>
-order allow,deny
-deny from [machines you'd like not to allow by IP address or name]
-allow from all
+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]
 </Limit>
-</Directory>
+</Files>
 

Using Netscape hostname shortcuts

-- 2.40.0