Commit 4ccc704d authored by Greg Ames's avatar Greg Ames
Browse files

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
parent a0c55b75
Loading
Loading
Loading
Loading
+15 −8
Original line number Diff line number Diff line
@@ -14,18 +14,25 @@
Port 80
ServerRoot @@ServerRoot@@
DocumentRoot @@ServerRoot@@/htdocs

<IfModule prefork.c>
MaxClients       8 
StartServers     5
MinSpareServers  5
MaxSpareServers 10
</IfModule>

<IfModule mpmt_pthread.c>
MaxClients       8
StartServers     1
MinSpareThreads  5
MaxSpareThreads 10
ThreadsPerChild 20
</IfModule>

# 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