From 681969ef5dfbdecad2f0c8dc26e376bf0c0c1296 Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Mon, 23 Oct 2000 22:41:58 +0000 Subject: [PATCH] One more update for "config directory" patch, plus update of keep-alive documentation. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86727 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/core.html | 57 +++++++++++++++++++++++++-------------- 1 file changed, 37 insertions(+), 20 deletions(-) diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 52504df999..e463ba4532 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -1290,13 +1290,15 @@ and later. This directive allows inclusion of other configuration files from within the server configuration files. +

If Include points to a directory, rather than a file, +Apache will read all files in that directory, and any subdirectory, +and parse those as configuration files. +


KeepAlive directive

-Syntax: (Apache 1.1) KeepAlive max-requests
-Default: (Apache 1.1) KeepAlive 5
-Syntax: (Apache 1.2) KeepAlive on/off
-Default: (Apache 1.2) KeepAlive On
+Syntax: KeepAlive on/off
+Default: KeepAlive On
Compatibility: KeepAlive is only available in Apache 1.1 and later.

-This directive enables -Keep-Alive -support. - -

Apache 1.1: Set max-requests -to the maximum number of requests you want Apache to entertain per -request. A limit is imposed to prevent a client from hogging your -server resources. Set this to 0 to disable support. +

The Keep-Alive extension to HTTP/1.0 and the persistent connection +feature of HTTP/1.1 provide long-lived HTTP sessions +which allow multiple requests to be sent over the same TCP connection. +In some cases this been shown to result in an almost 50% speedup in +latency times for HTML documents with many images.

+ +

In order for Keep-Alive support to be used: +

+ +

See also MaxKeepAliveRequests.

-

Apache 1.2 and later: Set to "On" to enable -persistent connections, "Off" to disable. See also the MaxKeepAliveRequests directive.


+

KeepAliveTimeout directive

MaxKeepAliveRequests directive.


>Compatibility: KeepAliveTimeout is only available in Apache 1.1 and later.

-The number of seconds Apache will wait for a subsequent request before -closing the connection. Once a request has been received, the timeout -value specified by the Timeout directive -applies. +

The number of seconds Apache will wait for a subsequent request +before closing the connection. Once a request has been received, the +timeout value specified by the Timeout directive applies.

+ +

Setting KeepAliveTimeout to a high value may +cause performance problems in heavily loaded servers. The +higher is the timeout, the more server processes will be kept +occupied waiting on connections with idle clients.

+ +

<Limit> directive

-- 2.50.1