Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 32502 invoked by uid 500); 20 Nov 2002 12:50:59 -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: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 32491 invoked by uid 500); 20 Nov 2002 12:50:58 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 20 Nov 2002 12:50:58 -0000 Message-ID: <20021120125058.73481.qmail@icarus.apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/docs/conf highperformance-std.conf X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N trawick 2002/11/20 04:50:57 Modified: docs/conf highperformance-std.conf Log: fix the sample worker configuration... it didn't make any sense previously, and you'd see something like this when starting Apache with it: WARNING: MaxClients (8) must be at least as large large as ThreadsPerChild (25). Automatically increasing MaxClients to 25. PR: 10430 Revision Changes Path 1.10 +6 -5 httpd-2.0/docs/conf/highperformance-std.conf Index: highperformance-std.conf =================================================================== RCS file: /home/cvs/httpd-2.0/docs/conf/highperformance-std.conf,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- highperformance-std.conf 19 Nov 2001 18:07:27 -0000 1.9 +++ highperformance-std.conf 20 Nov 2002 12:50:57 -0000 1.10 @@ -27,11 +27,12 @@ -MaxClients 8 -StartServers 3 -MinSpareThreads 5 -MaxSpareThreads 10 -ThreadsPerChild 25 +StartServers 2 +MaxClients 150 +MinSpareThreads 25 +MaxSpareThreads 75 +ThreadsPerChild 25 +MaxRequestsPerChild 0 # Assume no memory leaks at all