You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by no...@apache.org on 2008/03/06 05:27:10 UTC

svn commit: r634158 - /httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authnz_ldap.xml

Author: noodl
Date: Wed Mar  5 20:27:10 2008
New Revision: 634158

URL: http://svn.apache.org/viewvc?rev=634158&view=rev
Log:
Backport r634155 (Fix quoting for AuthLDAPUrl examples)

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authnz_ldap.xml

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authnz_ldap.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authnz_ldap.xml?rev=634158&r1=634157&r2=634158&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authnz_ldap.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authnz_ldap.xml Wed Mar  5 20:27:10 2008
@@ -450,7 +450,7 @@
         Grant access to anyone who exists in the LDAP directory,
         using their UID for searches. 
 <example>
-AuthLDAPURL ldap://ldap1.airius.com:389/ou=People, o=Airius?uid?sub?(objectClass=*)<br />
+AuthLDAPURL "ldap://ldap1.airius.com:389/ou=People, o=Airius?uid?sub?(objectClass=*)"<br />
 Require valid-user
 </example>
       </li>
@@ -459,7 +459,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. 
-<example>AuthLDAPURL ldap://ldap1.airius.com ldap2.airius.com/ou=People, o=Airius<br />
+<example>AuthLDAPURL "ldap://ldap1.airius.com ldap2.airius.com/ou=People, o=Airius"<br />
 Require valid-user
 </example>
       </li>
@@ -474,7 +474,7 @@
         choose an attribute that is guaranteed unique in your
         directory, such as <code>uid</code>. 
 <example>
-AuthLDAPURL ldap://ldap.airius.com/ou=People, o=Airius?cn<br />
+AuthLDAPURL "ldap://ldap.airius.com/ou=People, o=Airius?cn"<br />
 Require valid-user
 </example>
       </li>