- mod_authnz_ldap
- mod_authz_dbm
@@ -209,7 +209,7 @@ module from each group.
Let's examine each of those directives individually. The AuthType directive selects
+ module="mod_authn_core">AuthType directive selects
that method that is used to authenticate the user. The most
common method is Basic
, and this is the method
implemented by mod_auth_basic. It is important to be aware,
@@ -221,7 +221,7 @@ module from each group.
>mod_auth_digest and is much more secure. Most recent
browsers support Digest authentication.
- The AuthName directive sets
+
The AuthName directive sets
the Realm to be used in the authentication. The realm serves
two major functions. First, the client often presents this information to
the user as part of the password dialog box. Second, it is used by the
@@ -260,11 +260,11 @@ module from each group.
href="http://modules.apache.org/">Apache Modules
Database.
- Finally, the Require
+
Finally, the Require
directive provides the authorization part of the process by
setting the user that is allowed to access this region of the
server. In the next section, we discuss various ways to use the
- Require directive.
+ Require directive.
Letting more than one
diff --git a/docs/manual/howto/htaccess.xml b/docs/manual/howto/htaccess.xml
index 7b497b94fc..d71a36a074 100644
--- a/docs/manual/howto/htaccess.xml
+++ b/docs/manual/howto/htaccess.xml
@@ -47,11 +47,11 @@ changes on a per-directory basis.
Options
AddHandler
SetHandler
- AuthType
- AuthName
+ AuthType
+ AuthName
AuthUserFile
AuthGroupFile
- Require
+ Require
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml
index 19dbf3d265..fa7175aba6 100644
--- a/docs/manual/mod/core.xml
+++ b/docs/manual/mod/core.xml
@@ -378,10 +378,10 @@ be passed through
module="mod_authn_dbm">AuthDBMGroupFile,
AuthDBMUserFile,
AuthGroupFile,
- AuthName,
- AuthType, AuthName,
+ AuthType, AuthUserFile, Require, etc.).
+ module="mod_authz_core">Require, etc.).
- FileInfo
diff --git a/docs/manual/mod/mod_auth_digest.xml b/docs/manual/mod/mod_auth_digest.xml
index 4bfb650bec..53b89703d9 100644
--- a/docs/manual/mod/mod_auth_digest.xml
+++ b/docs/manual/mod/mod_auth_digest.xml
@@ -35,9 +35,9 @@
experimental.
-AuthName
-AuthType
-Require
+AuthName
+AuthType
+Require
Authentication howto
Using Digest Authentication
diff --git a/docs/manual/mod/mod_authn_dbd.xml b/docs/manual/mod/mod_authn_dbd.xml
index 32adc56d0f..6f743994d2 100644
--- a/docs/manual/mod/mod_authn_dbd.xml
+++ b/docs/manual/mod/mod_authn_dbd.xml
@@ -46,8 +46,8 @@
with the dbd
value.
-AuthName
-AuthType
+AuthName
+AuthType
AuthBasicProvider
diff --git a/docs/manual/mod/mod_authn_dbm.xml b/docs/manual/mod/mod_authn_dbm.xml
index 8d73ae07f1..8251b51f0b 100644
--- a/docs/manual/mod/mod_authn_dbm.xml
+++ b/docs/manual/mod/mod_authn_dbm.xml
@@ -43,8 +43,8 @@
with the dbm
value.
-AuthName
-AuthType
+AuthName
+AuthType
AuthBasicProvider
diff --git a/docs/manual/mod/mod_authnz_ldap.xml b/docs/manual/mod/mod_authnz_ldap.xml
index 7935baad10..c86387bfe2 100644
--- a/docs/manual/mod/mod_authnz_ldap.xml
+++ b/docs/manual/mod/mod_authnz_ldap.xml
@@ -126,7 +126,7 @@ for HTTP Basic authentication.
authentication provider can be enabled through the
AuthBasicProvider directive
using the ldap
value. The authz_ldap handler extends the
- Require directive's authorization types
+ Require directive's authorization types
by adding ldap-user
, ldap-dn
and ldap-group
values.
@@ -196,7 +196,7 @@ for HTTP Basic authentication.
mod_authnz_ldap to do a compare operation on the
LDAP server. This is why this phase is often referred to as the
compare phase. mod_authnz_ldap accepts the
- following Require
+ following Require
directives to determine if the credentials are acceptable:
@@ -227,14 +227,14 @@ for HTTP Basic authentication.
- otherwise, deny or decline access
- Other Require values may also
+
Other Require values may also
be used which may require loading additional authorization modules.
- Note that if you use a Require
+ Note that if you use a Require
value from another authorization module, you will need to ensure that
AuthzLDAPAuthoritative
is set to off
to allow the authorization phase to fall
back to the module providing the alternate
- Require value.
+ Require value.
- Grant access if there is a
Require
@@ -295,7 +295,7 @@ for HTTP Basic authentication.
The Require Directives
- Apache's Require
+
Apache's Require
directives are used during the authorization phase to ensure that
a user is allowed to access a resource. mod_authnz_ldap extends the
authorization types with ldap-user
, ldap-dn
,
diff --git a/docs/manual/mod/mod_authz_dbd.xml b/docs/manual/mod/mod_authz_dbd.xml
index 71b2c5fb2d..e6484279bb 100644
--- a/docs/manual/mod/mod_authz_dbd.xml
+++ b/docs/manual/mod/mod_authz_dbd.xml
@@ -37,7 +37,7 @@
mod_authn_dbd.
-Require
+Require
DBDriver
DBDParams
@@ -49,7 +49,7 @@ Specifically, we can maintain a logged in/logged out status in
the database, and control the status via designated URLs (subject
of course to users supplying the necessary credentials).
This works by defining two special
-Require types:
+Require types:
Require dbd-login
and Require dbd-logout
.
For usage details, see the configuration example below.
@@ -124,7 +124,7 @@ DBDExptime 300
The AuthzDBDQuery specifies an SQL
query to run. The purpose of the query depends on the
- Require directive in
+ Require directive in
effect.
- With
Require dbd-group
, it specifies a query
diff --git a/docs/manual/mod/mod_authz_dbm.xml b/docs/manual/mod/mod_authz_dbm.xml
index 4ed2494a9c..5c589bfeb3 100644
--- a/docs/manual/mod/mod_authz_dbm.xml
+++ b/docs/manual/mod/mod_authz_dbm.xml
@@ -36,7 +36,7 @@
provided by mod_authz_groupfile.
-Require
+Require
AuthDBMGroupFile
diff --git a/docs/manual/mod/mod_authz_groupfile.xml b/docs/manual/mod/mod_authz_groupfile.xml
index b6815befc8..1d5ed01438 100644
--- a/docs/manual/mod/mod_authz_groupfile.xml
+++ b/docs/manual/mod/mod_authz_groupfile.xml
@@ -36,7 +36,7 @@
provided by mod_authz_dbm.
-Require
+Require
AuthGroupFile
diff --git a/docs/manual/mod/mod_authz_owner.xml b/docs/manual/mod/mod_authz_owner.xml
index ab315ec638..5b7abda039 100644
--- a/docs/manual/mod/mod_authz_owner.xml
+++ b/docs/manual/mod/mod_authz_owner.xml
@@ -69,7 +69,7 @@
"MultiViews"
resources.
-Require
+Require
Configuration Examples
diff --git a/docs/manual/mod/mod_authz_user.xml b/docs/manual/mod/mod_authz_user.xml
index 33e59a4761..6fbdfe713b 100644
--- a/docs/manual/mod/mod_authz_user.xml
+++ b/docs/manual/mod/mod_authz_user.xml
@@ -37,6 +37,6 @@
directive. Alternatively require valid-user
can be used to
grant access to all successfully authenticated users.
-Require
+Require
diff --git a/docs/manual/new_features_2_2.xml b/docs/manual/new_features_2_2.xml
index 4a544ee950..3fcdd76898 100644
--- a/docs/manual/new_features_2_2.xml
+++ b/docs/manual/new_features_2_2.xml
@@ -133,7 +133,7 @@
mod_auth_ldap
module to the 2.2 Authn/Authz
framework. New features include using LDAP attribute values and
complicated search filters in the
- Require directive.
+ Require directive.
- mod_info
- Added a new
?config
argument which will show
--
2.40.0