You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2012/03/12 22:42:38 UTC

svn commit: r1299883 - /httpd/httpd/trunk/docs/manual/mod/mod_ldap.xml

Author: covener
Date: Mon Mar 12 21:42:37 2012
New Revision: 1299883

URL: http://svn.apache.org/viewvc?rev=1299883&view=rev
Log:
document LDAPRetries and LDAPRetryDelay knobs


Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_ldap.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_ldap.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_ldap.xml?rev=1299883&r1=1299882&r2=1299883&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_ldap.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_ldap.xml Mon Mar 12 21:42:37 2012
@@ -538,6 +538,37 @@ valid</description>
 </directivesynopsis>
 
 <directivesynopsis>
+<name>LDAPRetryDelay</name>
+<description>Configures the delay between LDAP server retries.</description>
+<syntax>LDAPRetryDelay <var>seconds</var></syntax>
+<default>LDAPRetryDelay 0</default>
+<contextlist><context>server config</context></contextlist>
+
+<usage>
+    <p>If <directive>LDAPRetryDelay</directive> is set to a non-zero
+    value, the server will delay retrying an LDAP request for the 
+    specified amount of time.  Setting this directive to 0 will
+    result in any retry to occur without delay.</p>
+
+    <p>LDAP errors such as timeouts and refused connections are retryable.</p>
+</usage>
+</directivesynopsis>
+
+<directivesynopsis>
+<name>LDAPRetries</name>
+<description>Configures the number of LDAP server retries.</description>
+<syntax>LDAPRetries <var>number-of-retries</var></syntax>
+<default>LDAPRetries 3</default>
+<contextlist><context>server config</context></contextlist>
+<usage>
+    <p>The server will retry failed LDAP requests up to 
+    <directive>LDAPRetries</directive> times.  Setting this
+    directive to 0 disables retries.</p>
+    <p>LDAP errors such as timeouts and refused connections are retryable.</p>
+</usage>
+</directivesynopsis>
+
+<directivesynopsis>
 <name>LDAPTrustedGlobalCert</name>
 <description>Sets the file or database containing global trusted
 Certificate Authority or global client certificates</description>