summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVincent Bray <noodl@apache.org>2007-09-12 10:32:57 +0000
committerVincent Bray <noodl@apache.org>2007-09-12 10:32:57 +0000
commitcb538040e8355e059680a149d7154ce422a39f73 (patch)
tree74d44393f4939e769f747c216d83e8ff2929e833 /docs
parent6079ae7aefea0c380aed3faef1c0c7b41b91311a (diff)
downloadhttpd-cb538040e8355e059680a149d7154ce422a39f73.tar.gz
PR #43358 - Fix links to moved auth directives (Takashi Sato)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@574882 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r--docs/manual/howto/auth.xml12
-rw-r--r--docs/manual/howto/htaccess.xml6
-rw-r--r--docs/manual/mod/core.xml6
-rw-r--r--docs/manual/mod/mod_auth_digest.xml6
-rw-r--r--docs/manual/mod/mod_authn_dbd.xml4
-rw-r--r--docs/manual/mod/mod_authn_dbm.xml4
-rw-r--r--docs/manual/mod/mod_authnz_ldap.xml12
-rw-r--r--docs/manual/mod/mod_authz_dbd.xml6
-rw-r--r--docs/manual/mod/mod_authz_dbm.xml2
-rw-r--r--docs/manual/mod/mod_authz_groupfile.xml2
-rw-r--r--docs/manual/mod/mod_authz_owner.xml2
-rw-r--r--docs/manual/mod/mod_authz_user.xml2
-rw-r--r--docs/manual/new_features_2_2.xml2
13 files changed, 33 insertions, 33 deletions
diff --git a/docs/manual/howto/auth.xml b/docs/manual/howto/auth.xml
index 8c4f347f80..a6b0cd2145 100644
--- a/docs/manual/howto/auth.xml
+++ b/docs/manual/howto/auth.xml
@@ -40,7 +40,7 @@ module from each group.</p>
<ul>
<li>Authentication type (see the
- <directive module="core">AuthType</directive> directive)
+ <directive module="mod_authn_core">AuthType</directive> directive)
<ul>
<li><module>mod_auth_basic</module></li>
<li><module>mod_auth_digest</module></li>
@@ -60,7 +60,7 @@ module from each group.</p>
</ul>
</li>
<li>Authorization (see the
- <directive module="core">Require</directive> directive)
+ <directive module="mod_authz_core">Require</directive> directive)
<ul>
<li><module>mod_authnz_ldap</module></li>
<li><module>mod_authz_dbm</module></li>
@@ -209,7 +209,7 @@ module from each group.</p>
</example>
<p>Let's examine each of those directives individually. The <directive
- module="core">AuthType</directive> directive selects
+ module="mod_authn_core">AuthType</directive> directive selects
that method that is used to authenticate the user. The most
common method is <code>Basic</code>, and this is the method
implemented by <module>mod_auth_basic</module>. It is important to be aware,
@@ -221,7 +221,7 @@ module from each group.</p>
>mod_auth_digest</module> and is much more secure. Most recent
browsers support Digest authentication.</p>
- <p>The <directive module="core">AuthName</directive> directive sets
+ <p>The <directive module="mod_authn_core">AuthName</directive> directive sets
the <dfn>Realm</dfn> 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.</p>
href="http://modules.apache.org/">Apache Modules
Database</a>.</p>
- <p>Finally, the <directive module="core">Require</directive>
+ <p>Finally, the <directive module="mod_authz_core">Require</directive>
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
- <directive module="core">Require</directive> directive.</p>
+ <directive module="mod_authz_core">Require</directive> directive.</p>
</section>
<section id="lettingmorethanonepersonin"><title>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.</p>
<directive module="core">Options</directive>
<directive module="mod_mime">AddHandler</directive>
<directive module="core">SetHandler</directive>
- <directive module="core">AuthType</directive>
- <directive module="core">AuthName</directive>
+ <directive module="mod_authn_core">AuthType</directive>
+ <directive module="mod_authn_core">AuthName</directive>
<directive module="mod_authn_file">AuthUserFile</directive>
<directive module="mod_authz_groupfile">AuthGroupFile</directive>
- <directive module="core">Require</directive>
+ <directive module="mod_authz_core">Require</directive>
</directivelist>
</related>
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</description>
module="mod_authn_dbm">AuthDBMGroupFile</directive>,
<directive module="mod_authn_dbm">AuthDBMUserFile</directive>,
<directive module="mod_authz_groupfile">AuthGroupFile</directive>,
- <directive module="core">AuthName</directive>,
- <directive module="core">AuthType</directive>, <directive
+ <directive module="mod_authn_core">AuthName</directive>,
+ <directive module="mod_authn_core">AuthType</directive>, <directive
module="mod_authn_file">AuthUserFile</directive>, <directive
- module="core">Require</directive>, <em>etc.</em>).</dd>
+ module="mod_authz_core">Require</directive>, <em>etc.</em>).</dd>
<dt>FileInfo</dt>
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.</p>
</summary>
-<seealso><directive module="core">AuthName</directive></seealso>
-<seealso><directive module="core">AuthType</directive></seealso>
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthName</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthType</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
<seealso><a href="../howto/auth.html">Authentication howto</a></seealso>
<section id="using"><title>Using Digest Authentication</title>
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 <code>dbd</code> value.</p>
</summary>
-<seealso><directive module="core">AuthName</directive></seealso>
-<seealso><directive module="core">AuthType</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthName</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthType</directive></seealso>
<seealso>
<directive module="mod_auth_basic">AuthBasicProvider</directive>
</seealso>
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 <code>dbm</code> value.</p>
</summary>
-<seealso><directive module="core">AuthName</directive></seealso>
-<seealso><directive module="core">AuthType</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthName</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthType</directive></seealso>
<seealso>
<directive module="mod_auth_basic">AuthBasicProvider</directive>
</seealso>
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.</description>
authentication provider can be enabled through the
<directive module="mod_auth_basic">AuthBasicProvider</directive> directive
using the <code>ldap</code> value. The authz_ldap handler extends the
- <directive module="core">Require</directive> directive's authorization types
+ <directive module="mod_authz_core">Require</directive> directive's authorization types
by adding <code>ldap-user</code>, <code>ldap-dn</code> and <code>ldap-group</code>
values.</p>
@@ -196,7 +196,7 @@ for HTTP Basic authentication.</description>
<module>mod_authnz_ldap</module> to do a compare operation on the
LDAP server. This is why this phase is often referred to as the
compare phase. <module>mod_authnz_ldap</module> accepts the
- following <directive module="core">Require</directive>
+ following <directive module="mod_authz_core">Require</directive>
directives to determine if the credentials are acceptable:</p>
<ul>
@@ -227,14 +227,14 @@ for HTTP Basic authentication.</description>
<li>otherwise, deny or decline access</li>
</ul>
- <p>Other <directive module="core">Require</directive> values may also
+ <p>Other <directive module="mod_authz_core">Require</directive> values may also
be used which may require loading additional authorization modules.
- Note that if you use a <directive module="core">Require</directive>
+ Note that if you use a <directive module="mod_authz_core">Require</directive>
value from another authorization module, you will need to ensure that
<directive module="mod_authnz_ldap">AuthzLDAPAuthoritative</directive>
is set to <code>off</code> to allow the authorization phase to fall
back to the module providing the alternate
- <directive module="core">Require</directive> value.</p>
+ <directive module="mod_authz_core">Require</directive> value.</p>
<ul>
<li>Grant access if there is a <a href="#requser"><code>Require
@@ -295,7 +295,7 @@ for HTTP Basic authentication.</description>
<section id="requiredirectives"><title>The Require Directives</title>
- <p>Apache's <directive module="core">Require</directive>
+ <p>Apache's <directive module="mod_authz_core">Require</directive>
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 <code>ldap-user</code>, <code>ldap-dn</code>,
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 @@
<module>mod_authn_dbd</module>.</p>
</summary>
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
<seealso><directive module="mod_dbd">DBDriver</directive></seealso>
<seealso><directive module="mod_dbd">DBDParams</directive></seealso>
@@ -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).</p>
<p>This works by defining two special
-<directive module="core">Require</directive> types:
+<directive module="mod_authz_core">Require</directive> types:
<code>Require dbd-login</code> and <code>Require dbd-logout</code>.
For usage details, see the configuration example below.</p>
</section>
@@ -124,7 +124,7 @@ DBDExptime 300
<usage>
<p>The <directive>AuthzDBDQuery</directive> specifies an SQL
query to run. The purpose of the query depends on the
- <directive module="core">Require</directive> directive in
+ <directive module="mod_authz_core">Require</directive> directive in
effect.</p>
<ul>
<li>With <code>Require dbd-group</code>, 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 <module>mod_authz_groupfile</module>.</p>
</summary>
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
<directivesynopsis>
<name>AuthDBMGroupFile</name>
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 <module>mod_authz_dbm</module>.</p>
</summary>
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
<directivesynopsis>
<name>AuthGroupFile</name>
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"</a> resources.</p>
</note>
</summary>
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
<section id="examples"><title>Configuration Examples</title>
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 <code>require valid-user</code> can be used to
grant access to all successfully authenticated users.</p>
</summary>
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
</modulesynopsis>
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 @@
<code>mod_auth_ldap</code> module to the 2.2 <code>Authn/Authz</code>
framework. New features include using LDAP attribute values and
complicated search filters in the
- <directive module="core">Require</directive> directive.</dd>
+ <directive module="mod_authz_core">Require</directive> directive.</dd>
<dt><module>mod_info</module></dt>
<dd>Added a new <code>?config</code> argument which will show