From: Chuck Murcko Date: Fri, 25 Apr 1997 01:29:57 +0000 (+0000) Subject: Changed back to use of Directory blocks for access control. X-Git-Tag: APACHE_1_2b9~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=269abd1cb90dcb470da0e2feac1131cd6394bc7d;p=apache Changed back to use of Directory blocks for access control. Clarified location of proxy source in 1.2. Added note that proxy is HTTP 1.0 compliant. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78012 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_proxy.html b/docs/manual/mod/mod_proxy.html index 107041fc49..6cd6b3500a 100644 --- a/docs/manual/mod/mod_proxy.html +++ b/docs/manual/mod/mod_proxy.html @@ -9,9 +9,9 @@

Apache module mod_proxy

This module is contained in the mod_proxy.c file for Apache 1.1.x, -or the modules/proxy/libproxy.a library for Apache 1.2, and -is not compiled in by default. It provides for a caching proxy server. -It is only available in Apache 1.1 and later. Common configuration +or the modules/proxy subdirectory for Apache 1.2, and +is not compiled in by default. It provides for an HTTP 1.0 caching proxy +server. It is only available in Apache 1.1 and later. Common configuration questions are addressed here.

Note:

@@ -296,17 +296,17 @@ disables caching completely.

Controlling access to your proxy

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

-<Files proxy:*>
+<Directory proxy:*>
 <Limit GET>
 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>
-</Files>
+</Directory>
 

Using Netscape hostname shortcuts