summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2005-04-07 01:06:44 +0000
committerRich Bowen <rbowen@apache.org>2005-04-07 01:06:44 +0000
commite7fb5082109a9882c405fbb2e509cffe471a178a (patch)
tree35c6eaa4c82a9be9af49c7a28f809d8154399a00
parent1e7f35df82cb9f96a53fc82587269deb9c2ad427 (diff)
downloadhttpd-e7fb5082109a9882c405fbb2e509cffe471a178a.tar.gz
People seem to be having trouble with multiple arguments to Allow. More
examples are always good. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@160355 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/mod/mod_access.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/manual/mod/mod_access.xml b/docs/manual/mod/mod_access.xml
index f26b88bca3..d4e750c0c3 100644
--- a/docs/manual/mod/mod_access.xml
+++ b/docs/manual/mod/mod_access.xml
@@ -100,7 +100,8 @@ server</description>
<dd>
<example><title>Example:</title>
- Allow from apache.org
+ Allow from apache.org<br />
+ Allow from .net example.edu
</example>
<p>Hosts whose names match, or end in, this string are allowed
access. Only complete components are matched, so the above
@@ -119,7 +120,8 @@ server</description>
<dd>
<example><title>Example:</title>
- Allow from 10.1.2.3
+ Allow from 10.1.2.3<br />
+ Allow from 192.168.1.104 192.168.1.205
</example>
<p>An IP address of a host allowed access</p></dd>
@@ -127,7 +129,8 @@ server</description>
<dd>
<example><title>Example:</title>
- Allow from 10.1
+ Allow from 10.1<br />
+ Allow from 10 172.20 192.168.2
</example>
<p>The first 1 to 3 bytes of an IP address, for subnet
restriction.</p></dd>