You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bn...@apache.org on 2004/08/20 18:24:53 UTC

cvs commit: httpd-2.0/docs/manual/programs configure.xml

bnicholes    2004/08/20 09:24:52

  Modified:    docs/manual/mod mod_ldap.xml
               docs/manual/programs configure.xml
  Log:
  Fix a few references to mod_auth_ldap to be mod_authnz_ldap
  
  Revision  Changes    Path
  1.13      +5 -5      httpd-2.0/docs/manual/mod/mod_ldap.xml
  
  Index: mod_ldap.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_ldap.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- mod_ldap.xml	26 May 2004 11:48:19 -0000	1.12
  +++ mod_ldap.xml	20 Aug 2004 16:24:52 -0000	1.13
  @@ -52,12 +52,12 @@
   <section id="exampleconfig"><title>Example Configuration</title>
       <p>The following is an example configuration that uses
       <module>mod_ldap</module> to increase the performance of HTTP Basic
  -    authentication provided by <module>mod_auth_ldap</module>.</p>
  +    authentication provided by <module>mod_authnz_ldap</module>.</p>
   
       <example>
         # Enable the LDAP connection pool and shared<br />
         # memory cache. Enable the LDAP cache status<br />
  -      # handler. Requires that mod_ldap and mod_auth_ldap<br />
  +      # handler. Requires that mod_ldap and mod_authnz_ldap<br />
         # be loaded. Change the "yourdomain.example.com" to<br />
         # match your domain.<br />
         <br />
  @@ -107,7 +107,7 @@
       caching strategy to minimize the number of times that the LDAP
       server must be contacted. Caching can easily double or triple
       the throughput of Apache when it is serving pages protected
  -    with mod_auth_ldap. In addition, the load on the LDAP server
  +    with mod_authnz_ldap. In addition, the load on the LDAP server
       will be significantly decreased.</p>
   
       <p><module>mod_ldap</module> supports two types of LDAP caching during
  @@ -193,7 +193,7 @@
   
       <example>
         # Establish an SSL LDAP connection. Requires that <br />
  -      # mod_ldap and mod_auth_ldap be loaded. Change the <br />
  +      # mod_ldap and mod_authnz_ldap be loaded. Change the <br />
         # "yourdomain.example.com" to match your domain.<br />
         <br />
         LDAPTrustedCA /certs/certfile.der<br />
  
  
  
  1.13      +2 -2      httpd-2.0/docs/manual/programs/configure.xml
  
  Index: configure.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/programs/configure.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- configure.xml	26 May 2004 22:20:04 -0000	1.12
  +++ configure.xml	20 Aug 2004 16:24:52 -0000	1.13
  @@ -415,7 +415,7 @@
   
           <dt><code>--enable-auth-ldap</code></dt>
           <dd>Enable LDAP based authentication provided by
  -          <module>mod_auth_ldap</module>.</dd>
  +          <module>mod_authnz_ldap</module>.</dd>
             
           <dt><code>--enable-cache</code></dt>
           <dd>Enable dynamic file caching provided by
  
  
  

Re: cvs commit: httpd-2.0/docs/manual/programs configure.xml

Posted by Joshua Slive <jo...@slive.ca>.
On Fri, 20 Aug 2004 bnicholes@apache.org wrote:
>           <dt><code>--enable-auth-ldap</code></dt>

I suspect the above line needs to be changed too.

>           <dd>Enable LDAP based authentication provided by
>  -          <module>mod_auth_ldap</module>.</dd>
>  +          <module>mod_authnz_ldap</module>.</dd>

Joshua.