Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 79587 invoked from network); 21 May 2004 18:52:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 21 May 2004 18:52:15 -0000 Received: (qmail 2607 invoked by uid 500); 21 May 2004 18:52:32 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 2570 invoked by uid 500); 21 May 2004 18:52:32 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 2544 invoked by uid 500); 21 May 2004 18:52:32 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 2538 invoked by uid 98); 21 May 2004 18:52:31 -0000 Received: from nd@apache.org by hermes.apache.org by uid 82 with qmail-scanner-1.20 (clamuko: 0.70. Clear:RC:0(209.237.227.194):. Processed in 0.068586 secs); 21 May 2004 18:52:31 -0000 X-Qmail-Scanner-Mail-From: nd@apache.org via hermes.apache.org X-Qmail-Scanner: 1.20 (Clear:RC:0(209.237.227.194):. Processed in 0.068586 secs) Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by hermes.apache.org with SMTP; 21 May 2004 18:52:31 -0000 Received: (qmail 79522 invoked by uid 1569); 21 May 2004 18:52:13 -0000 Date: 21 May 2004 18:52:13 -0000 Message-ID: <20040521185213.79521.qmail@minotaur.apache.org> From: nd@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/docs/manual/mod mod_auth_ldap.html.en mod_file_cache.html.en mod_file_cache.xml X-Spam-Rating: hermes.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N nd 2004/05/21 11:52:13 Modified: docs/manual/mod mod_auth_ldap.html.en mod_file_cache.html.en mod_file_cache.xml Log: update transformation Revision Changes Path 1.26 +12 -10 httpd-2.0/docs/manual/mod/mod_auth_ldap.html.en Index: mod_auth_ldap.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_auth_ldap.html.en,v retrieving revision 1.25 retrieving revision 1.26 diff -u -u -r1.25 -r1.26 --- mod_auth_ldap.html.en 3 Apr 2004 16:24:57 -0000 1.25 +++ mod_auth_ldap.html.en 21 May 2004 18:52:12 -0000 1.26 @@ -315,7 +315,8 @@

This directive specifies an LDAP group whose members are allowed access. It takes the distinguished name of the LDAP - group. For example, assume that the following entry existed in + group. Note: Do not surround the group name with quotes. + For example, assume that the following entry existed in the LDAP directory:

dn: cn=Administrators, o=Airius
@@ -326,7 +327,7 @@

The following directive would grant access to both Fred and Barbara:

-

require group "cn=Administrators, o=Airius"

+

require group cn=Administrators, o=Airius

Behavior of this directive is modified by the AuthLDAPGroupAttribute and AuthLDAPGroupAttributeIsDN @@ -340,11 +341,12 @@ that must match for access to be granted. If the distinguished name that was retrieved from the directory server matches the distinguished name in the require dn, then - authorization is granted.

+ authorization is granted. Note: do not surround the distinguished + name with quotes.

The following directive would grant access to a specific DN:

-

require dn "cn=Barbara Jenson, o=Airius"

+

require dn cn=Barbara Jenson, o=Airius

Behavior of this directive is modified by the AuthLDAPCompareDNOnServer directive.

@@ -358,7 +360,7 @@ Grant access to anyone who exists in the LDAP directory, using their UID for searches.

-AuthLDAPURL "ldap://ldap1.airius.com:389/ou=People, o=Airius?uid?sub?(objectClass=*)"
+AuthLDAPURL ldap://ldap1.airius.com:389/ou=People, o=Airius?uid?sub?(objectClass=*)
require valid-user

@@ -367,7 +369,7 @@ The next example is the same as above; but with the fields that have useful defaults omitted. Also, note the use of a redundant LDAP server. -

AuthLDAPURL "ldap://ldap1.airius.com ldap2.airius.com/ou=People, o=Airius"
+

AuthLDAPURL ldap://ldap1.airius.com ldap2.airius.com/ou=People, o=Airius
require valid-user

@@ -382,7 +384,7 @@ choose an attribute that is guaranteed unique in your directory, such as uid.

-AuthLDAPURL "ldap://ldap.airius.com/ou=People, o=Airius?cn"
+AuthLDAPURL ldap://ldap.airius.com/ou=People, o=Airius?cn
require valid-user

@@ -391,7 +393,7 @@ Grant access to anybody in the Administrators group. The users must authenticate using their UID.

-AuthLDAPURL "ldap://ldap.airius.com/o=Airius?uid"
+AuthLDAPURL ldap://ldap.airius.com/o=Airius?uid
require group cn=Administrators, o=Airius

@@ -403,7 +405,7 @@ only to people (authenticated via their UID) who have alphanumeric pagers:

-AuthLDAPURL "ldap://ldap.airius.com/o=Airius?uid??(qpagePagerID=*)"
+AuthLDAPURL ldap://ldap.airius.com/o=Airius?uid??(qpagePagerID=*)
require valid-user

@@ -419,7 +421,7 @@ have a pager, but does need to access the same resource:

-AuthLDAPURL "ldap://ldap.airius.com/o=Airius?uid??(|(qpagePagerID=*)(uid=jmanager))"
+AuthLDAPURL ldap://ldap.airius.com/o=Airius?uid??(|(qpagePagerID=*)(uid=jmanager))
require valid-user

1.21 +1 -1 httpd-2.0/docs/manual/mod/mod_file_cache.html.en Index: mod_file_cache.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_file_cache.html.en,v retrieving revision 1.20 retrieving revision 1.21 diff -u -u -r1.20 -r1.21 --- mod_file_cache.html.en 25 Apr 2004 22:53:11 -0000 1.20 +++ mod_file_cache.html.en 21 May 2004 18:52:12 -0000 1.21 @@ -131,7 +131,7 @@

Note

-

Don't bother asking for a for a directive which recursively +

Don't bother asking for a directive which recursively caches all the files in a directory. Try this instead... See the Include directive, and consider this command:

1.8 +2 -2 httpd-2.0/docs/manual/mod/mod_file_cache.xml Index: mod_file_cache.xml =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_file_cache.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -u -r1.7 -r1.8 --- mod_file_cache.xml 17 Apr 2004 10:49:22 -0000 1.7 +++ mod_file_cache.xml 21 May 2004 18:52:12 -0000 1.8 @@ -125,7 +125,7 @@ Note -

Don't bother asking for a for a directive which recursively +

Don't bother asking for a directive which recursively caches all the files in a directory. Try this instead... See the Include directive, and consider this command: