From: Eric Covener
Date: Thu, 29 Jan 2009 12:44:19 +0000 (+0000)
Subject: address a frequent pitfall/misunderstanding about how multiple basic auth providers...
X-Git-Tag: 2.3.2~123
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a40db410d10299e111c4ae26c3dad50a3802055;p=apache
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
---
diff --git a/docs/manual/mod/mod_auth_basic.html.en b/docs/manual/mod/mod_auth_basic.html.en
index d89dbe5578..f0cb8f6723 100644
--- a/docs/manual/mod/mod_auth_basic.html.en
+++ b/docs/manual/mod/mod_auth_basic.html.en
@@ -111,6 +111,11 @@ lower level modules
</Location>
+ 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.
+
Providers are implemented by mod_authn_dbm
,
mod_authn_file
, mod_authn_dbd
,
and mod_authnz_ldap
.
diff --git a/docs/manual/mod/mod_auth_basic.xml b/docs/manual/mod/mod_auth_basic.xml
index 4c86d3adff..8528c68afc 100644
--- a/docs/manual/mod/mod_auth_basic.xml
+++ b/docs/manual/mod/mod_auth_basic.xml
@@ -74,6 +74,11 @@
</Location>
+ 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.
+
Providers are implemented by mod_authn_dbm,
mod_authn_file, mod_authn_dbd,
and mod_authnz_ldap.