Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 88257 invoked from network); 14 Sep 2009 21:06:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 14 Sep 2009 21:06:38 -0000 Received: (qmail 99795 invoked by uid 500); 14 Sep 2009 21:06:38 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 99709 invoked by uid 500); 14 Sep 2009 21:06:38 -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: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 99700 invoked by uid 99); 14 Sep 2009 21:06:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Sep 2009 21:06:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Sep 2009 21:06:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7CDDE23888D7; Mon, 14 Sep 2009 21:06:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r814856 - /httpd/mod_fcgid/trunk/docs/manual/mod/mod_fcgid.xml Date: Mon, 14 Sep 2009 21:06:17 -0000 To: cvs@httpd.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090914210617.7CDDE23888D7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: trawick Date: Mon Sep 14 21:06:17 2009 New Revision: 814856 URL: http://svn.apache.org/viewvc?rev=814856&view=rev Log: add initial doc for these directives: ErrorScanInterval IdleScanInterval IdleTimeout IPCCommTimeout IPCConnectTimeout OutputBufferSize provide a link in the description of BusyScanInterval Modified: httpd/mod_fcgid/trunk/docs/manual/mod/mod_fcgid.xml Modified: httpd/mod_fcgid/trunk/docs/manual/mod/mod_fcgid.xml URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/docs/manual/mod/mod_fcgid.xml?rev=814856&r1=814855&r2=814856&view=diff ============================================================================== --- httpd/mod_fcgid/trunk/docs/manual/mod/mod_fcgid.xml (original) +++ httpd/mod_fcgid/trunk/docs/manual/mod/mod_fcgid.xml Mon Sep 14 21:06:17 2009 @@ -66,8 +66,9 @@ BusyScanInterval 120 server config virtual host -

The module performs the BusyTimeout check - at this interval.

+

The module performs the + BusyTimeout check at this + interval.

@@ -142,7 +143,11 @@ ErrorScanInterval 3 server config virtual host -

TODO

+

This is the interval at which the module will handle + pending process termination. Termination is pending for + any processes which have exceeded + IdleScanInterval or + ProcessLifeTime.

@@ -344,7 +349,10 @@ IdleScanInterval 120 server config virtual host -

TODO

+

This is the interval at which the module will search for + processes which have exceeded + IdleScanInterval or + ProcessLifeTime.

@@ -355,7 +363,8 @@ IdleTimeout 300 server config virtual host -

TODO

+

Application processes which have not handled a request + for this period of time will be terminated.

@@ -366,7 +375,14 @@ IPCCommTimeout 40 server config virtual host -

TODO

+

This is the maximum period of time the module will wait + while trying to read from or write to a FastCGI application.

+ + Warning +

The FastCGI application must begin generating the response within + this period of time. Increase this directive as necessary to handle + applications which take a relatively long period of time to respond.

+
@@ -377,7 +393,10 @@ IPCConnectTimeout 3 server config virtual host -

TODO

+

This is the maximum period of time the module will wait + while trying to connect to a FastCGI application on Windows. + (This directive is not respected on Unix, where AF_UNIX defaults + will apply.)

@@ -439,7 +458,8 @@ OutputBufferSize 65536 server config virtual host -

TODO

+

This is the maximum amount of response data the module will read + from the FastCGI application before flushing the data to the client.