]> granicus.if.org Git - apache/commitdiff
Reviewed by: Brian Behlendorf
authorbrian <brian@unknown>
Mon, 3 Feb 1997 01:18:17 +0000 (01:18 +0000)
committerbrian <brian@unknown>
Mon, 3 Feb 1997 01:18:17 +0000 (01:18 +0000)
Submitted by: Dean Gaudet

The docs show some examples using <Limit GET POST> ... </Limit> where the
<Limit>s are not strictly required.  Since it is less secure to specify
them than it is to leave them out I think the examples should be modified.
If they're to be left in, then some of them need &lt; ... &gt;.

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

docs/manual/location.html
docs/manual/mod/core.html
docs/manual/mod/mod_access.html
docs/manual/mod/mod_status.html

index 36e5944c0ab89ff385e06b18804b0f473e84efa6..e6e39a012add2da7dadf3f0536b41527515ef3c7 100644 (file)
@@ -40,11 +40,9 @@ from browsers at foo.com, you might use:
 <pre>
     &lt;Location /status&gt;
     SetHandler server-status
-    <Limit GET>
     order deny,allow
     deny from all
     allow from .foo.com
-    </Limit>
     &lt;/Location&gt;
 </pre>
 
index 6e018ed8fc724cd691b28a9f134eca239ff14dfb..cca91e587b6a6ccb1e96e5541be3ab17402b6ada 100644 (file)
@@ -666,11 +666,9 @@ from browsers at foo.com, you might use:
 <pre>
     &lt;Location /status&gt;
     SetHandler server-status
-    <Limit GET>
     order deny,allow
     deny from all
     allow from .foo.com
-    </Limit>
     &lt;/Location&gt;
 </pre>
 <hr>
index 42fb2da7100acab2d613556364d22d08bd7d3fe7..3f41cff6c9f90480ff0f1bf6486ecda1a830a2e3 100644 (file)
@@ -30,8 +30,7 @@ hostname or IP address.
 <strong>Status:</strong> Base<br>
 <strong>Module:</strong> mod_access<p>
 
-The allow directive affects which hosts can access a given directory; it is
-typically used within a <A HREF="core.html#limit">&lt;Limit&gt;</A> section.
+The allow directive affects which hosts can access a given directory.
 <em>Host</em> is one of the following:
 <dl>
 <dt><code>all</code>
@@ -60,8 +59,7 @@ See also <A HREF="#deny">deny</A> and <A HREF="#order">order</A>.<p><hr>
 <strong>Status:</strong> Base<br>
 <strong>Module:</strong> mod_access<p>
 
-The deny directive affects which hosts can access a given directory; it is
-typically used within a <A HREF="core.html#limit">&lt;Limit&gt;</A> section.
+The deny directive affects which hosts can access a given directory.
 <em>Host</em> is one of the following:
 <dl>
 <dt><code>all</code>
index 6fd11dff31fe601b3491f4f1e59a83db45a98b9d..1ce412c99da6a0febe62376131ae2814da39119a 100644 (file)
@@ -45,11 +45,9 @@ domain add this code to your <code>access.conf</code> configuration file
     &lt;Location /server-status&gt;
     SetHandler server-status
     
-    &lt;Limit GET POST&gt;
     order deny,allow
     deny from all
     allow from .foo.com
-    &lt;/Limit&gt;
     &lt;/Location&gt;
 </pre>
 <p>