From: André Malo Date: Fri, 21 May 2004 18:52:12 +0000 (+0000) Subject: update transformation X-Git-Tag: pre_ajp_proxy~243 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9028bf97e2fcb0fcc08c08d9c558a114c6b5552f;p=apache update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103719 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_auth_ldap.html.en b/docs/manual/mod/mod_auth_ldap.html.en index 3028c29649..242be62869 100644 --- a/docs/manual/mod/mod_auth_ldap.html.en +++ b/docs/manual/mod/mod_auth_ldap.html.en @@ -315,7 +315,8 @@ require user "Joe Manager"

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 @@ uniqueMember: cn=Fred User, o=Airius

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 @@ uniqueMember: cn=Fred User, o=Airius
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 @@ uniqueMember: cn=Fred User, o=Airius
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 @@ require valid-user 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 @@ require valid-user 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 @@ require valid-user 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 @@ require group cn=Administrators, o=Airius 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 @@ require valid-user 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

diff --git a/docs/manual/mod/mod_file_cache.html.en b/docs/manual/mod/mod_file_cache.html.en index f68c9408e6..fcb30d982a 100644 --- a/docs/manual/mod/mod_file_cache.html.en +++ b/docs/manual/mod/mod_file_cache.html.en @@ -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:

diff --git a/docs/manual/mod/mod_file_cache.xml b/docs/manual/mod/mod_file_cache.xml index 936ccc2d83..30f731f526 100644 --- a/docs/manual/mod/mod_file_cache.xml +++ b/docs/manual/mod/mod_file_cache.xml @@ -1,7 +1,7 @@ - +