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>
+ <Directory /var/www/private><br />
+ Require valid-user<br />
+ </Directory><br />
+ <br />
+ <Directory /var/www/private/public><br />
+ Allow from all<br />
+ Satisfy Any<br />
+ </Directory>
+ </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"><Limit></a></code> and <code class="directive"><a href="../mod/core.html#limitexcept"><LimitExcept></a></code> sections.</p>
Satisfy Any
</example>
+ <p>
+ Another frequent use of the <directive>Satisfy</directive> directive
+ is to relax access restrictions for a subdirectory:
+ </p>
+
+ <example>
+ <Directory /var/www/private><br />
+ Require valid-user<br />
+ </Directory><br />
+ <br />
+ <Directory /var/www/private/public><br />
+ Allow from all<br />
+ Satisfy Any<br />
+ </Directory>
+ </example>
+
+ <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 <directive>Satisfy</directive> directives can
be restricted to particular methods by <directive module="core"
type="section">Limit</directive> and <directive module="core" type="section"