diff options
author | Graham Leggett <minfrin@apache.org> | 2013-12-30 13:09:24 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2013-12-30 13:09:24 +0100 |
commit | d5780112ec51b3a677d409d7fcd3810c317ea95e (patch) | |
tree | 7e81cf676b8b71bf0e641b971c7520150e22b4ec /docs/manual/mod/mod_authz_host.html.en | |
parent | mod_authz_user: Support the expression parser within the require directives. (diff) | |
download | apache2-d5780112ec51b3a677d409d7fcd3810c317ea95e.tar.xz apache2-d5780112ec51b3a677d409d7fcd3810c317ea95e.zip |
Update transformation.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1554197 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_authz_host.html.en')
-rw-r--r-- | docs/manual/mod/mod_authz_host.html.en | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/manual/mod/mod_authz_host.html.en b/docs/manual/mod/mod_authz_host.html.en index 5a5b91c207..cce3d4683f 100644 --- a/docs/manual/mod/mod_authz_host.html.en +++ b/docs/manual/mod/mod_authz_host.html.en @@ -71,7 +71,7 @@ address)</td></tr> <p>Apache's <code class="directive"><a href="../mod/mod_authz_core.html#require">Require</a></code> directive is used during the authorization phase to ensure that a user is allowed or denied access to a resource. mod_authz_host extends the - authorization types with <code>ip</code> and <code>host</code>. + authorization types with <code>ip</code>, <code>host</code> and <code>local</code>. Other authorization types may also be used but may require that additional authorization modules be loaded.</p> @@ -79,6 +79,9 @@ address)</td></tr> access an area of the server. Access can be controlled by hostname, IP Address, or IP Address range.</p> + <p>Since v2.5.0, <a href="../expr.html">expressions</a> are supported + within the host require directives.</p> + <h3><a name="reqip" id="reqip">Require ip</a></h3> <p>The <code>ip</code> provider allows access to the server @@ -136,6 +139,8 @@ Require ip 2001:db8::a00:20ff:fea7:ccea/10 </pre> + <p>Note: As the IP addresses are parsed on startup, expressions are + not evaluated at request time.</p> |