1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

address a frequent pitfall/misunderstanding about how multiple basic auth providers are used

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@738841 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eric Covener
2009-01-29 12:44:19 +00:00
parent 7061cf0770
commit 2a40db410d
2 changed files with 10 additions and 0 deletions

View File

@@ -111,6 +111,11 @@ lower level modules</td></tr>
&lt;/Location&gt;
</code></p></div>
<p> Providers are queried in order until a provider finds a match
for the requested username, at which point this sole provider will
attempt to check the password. A failure to verify the password does
not result in control being passed on to subsequent providers.</p>
<p>Providers are implemented by <code class="module"><a href="../mod/mod_authn_dbm.html">mod_authn_dbm</a></code>,
<code class="module"><a href="../mod/mod_authn_file.html">mod_authn_file</a></code>, <code class="module"><a href="../mod/mod_authn_dbd.html">mod_authn_dbd</a></code>,
and <code class="module"><a href="../mod/mod_authnz_ldap.html">mod_authnz_ldap</a></code>.</p>

View File

@@ -74,6 +74,11 @@
&lt;/Location&gt;
</example>
<p> Providers are queried in order until a provider finds a match
for the requested username, at which point this sole provider will
attempt to check the password. A failure to verify the password does
not result in control being passed on to subsequent providers.</p>
<p>Providers are implemented by <module>mod_authn_dbm</module>,
<module>mod_authn_file</module>, <module>mod_authn_dbd</module>,
and <module>mod_authnz_ldap</module>.</p>