summaryrefslogtreecommitdiff
path: root/docs/manual/mod/mod_access_compat.html.en
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2009-10-16 13:55:17 +0000
committerRich Bowen <rbowen@apache.org>2009-10-16 13:55:17 +0000
commit3d47d2cc415da1671d7cb8e3502f3ed645914de6 (patch)
tree5f39f0390ccc4c07d045e60c5e57d37f7c3adedc /docs/manual/mod/mod_access_compat.html.en
parent5cd544aef2286c7ba0bdce32d498090d47500ad3 (diff)
downloadhttpd-3d47d2cc415da1671d7cb8e3502f3ed645914de6.tar.gz
Adds the frequently-requested example of relaxing authentication for a
subdirectory. Whether this is actually a *good* idea is left as an exercise for the reader. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@825898 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_access_compat.html.en')
-rw-r--r--docs/manual/mod/mod_access_compat.html.en20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_access_compat.html.en b/docs/manual/mod/mod_access_compat.html.en
index a04c297f6b..a91adab23f 100644
--- a/docs/manual/mod/mod_access_compat.html.en
+++ b/docs/manual/mod/mod_access_compat.html.en
@@ -414,6 +414,26 @@ later</td></tr>
Satisfy Any
</code></p></div>
+ <p>
+ Another frequent use of the <code class="directive">Satisfy</code> directive
+ is to relax access restrictions for a subdirectory:
+ </p>
+
+ <div class="example"><p><code>
+ &lt;Directory /var/www/private&gt;<br />
+ Require valid-user<br />
+ &lt;/Directory&gt;<br />
+ <br />
+ &lt;Directory /var/www/private/public&gt;<br />
+ Allow from all<br />
+ Satisfy Any<br />
+ &lt;/Directory&gt;
+ </code></p></div>
+
+ <p>In the above example, authentication will be required for the
+ <code>/var/www/private</code> directory, but will not be required
+ for the <code>/var/www/private/public</code> directory.</p>
+
<p>Since version 2.0.51 <code class="directive">Satisfy</code> directives can
be restricted to particular methods by <code class="directive"><a href="../mod/core.html#limit">&lt;Limit&gt;</a></code> and <code class="directive"><a href="../mod/core.html#limitexcept">&lt;LimitExcept&gt;</a></code> sections.</p>