From 4ccc704df75697073c67245bd1310f8f05d8cd2b Mon Sep 17 00:00:00 2001 From: Greg Ames Date: Fri, 19 Jan 2001 16:02:54 +0000 Subject: [PATCH] updated to work with either prefork or the pthread mpms. I've been using specialized versions of this for ages. Time to commit it. If nobody objects, I'd like to rename it highperformance-std.conf, so make install will find it and do Good Things. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87736 13f79535-47bb-0310-9956-ffa450edef68 --- docs/conf/highperformance.conf | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/docs/conf/highperformance.conf b/docs/conf/highperformance.conf index c10262e8e8a..b3963733f00 100644 --- a/docs/conf/highperformance.conf +++ b/docs/conf/highperformance.conf @@ -14,18 +14,25 @@ Port 80 ServerRoot @@ServerRoot@@ DocumentRoot @@ServerRoot@@/htdocs -MaxClients 8 -StartServers 5 -MinSpareServers 5 + + +MaxClients 8 +StartServers 5 +MinSpareServers 5 MaxSpareServers 10 + + + +MaxClients 8 +StartServers 1 +MinSpareThreads 5 +MaxSpareThreads 10 +ThreadsPerChild 20 + + # Assume no memory leaks at all MaxRequestsPerChild 0 -# this is a True Config File -# see http://www.apache.org/info/three-config-files.html -# ResourceConfig /dev/null -# AccessConfig /dev/null - # it's always nice to know the server has started ErrorLog logs/error_log -- 2.47.3