From c7713b77f8fd5edc8dd9aa5c2d10fe9dc3977b2a Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 20 Nov 2002 12:50:57 +0000 Subject: [PATCH] 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 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97573 13f79535-47bb-0310-9956-ffa450edef68 --- docs/conf/highperformance-std.conf | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/conf/highperformance-std.conf b/docs/conf/highperformance-std.conf index 2d35616516..a8e033c267 100755 --- a/docs/conf/highperformance-std.conf +++ b/docs/conf/highperformance-std.conf @@ -27,11 +27,12 @@ MaxSpareServers 10 -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 -- 2.40.0