]> granicus.if.org Git - apache/commitdiff
In view of lack of response to patching http_core.c to handle proxy: change
authorChuck Murcko <chuck@apache.org>
Mon, 21 Apr 1997 03:12:06 +0000 (03:12 +0000)
committerChuck Murcko <chuck@apache.org>
Mon, 21 Apr 1997 03:12:06 +0000 (03:12 +0000)
the access example to use <Files> block instead of <Directory>.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77944 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_proxy.html

index 52e389dce875fe330616b51fdccd24e4667a1831..0332ee6e6c2f48b0fde2267f46d04a340ba0c098 100644 (file)
@@ -296,17 +296,17 @@ disables caching completely.<p>
 
 <a name="access"><h2>Controlling access to your proxy</h2>
 
-You can control who can access your proxy via the normal &lt;Directory&gt;
+You can control who can access your proxy via the normal &lt;Files&gt;
 control block using the following example:<p>
 
 <pre>
-&lt;Directory proxy:*&gt;
+&lt;Files proxy:*&gt;
 &lt;Limit GET&gt;
-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]
 &lt;/Limit&gt;
-&lt;/Directory&gt;
+&lt;/Files&gt;
 </pre><p>
 
 <a name="shortname"><h2>Using Netscape hostname shortcuts</h2>