# $Id: mpm.conf,v 1.2 2006/04/26 10:33:33 elkner Exp $ # Server-Pool Management (MPM specific) # Apache runs with reduced rights - so PidFile and LockFile need a # webservd writable directory (per default /var/run is 0755 root:sys) # PidFile: The file in which the server should record its process # identification number when it starts. # PidFile /var/log/httpd/httpd.pid # The accept serialization lock file MUST BE STORED ON A LOCAL DISK. LockFile /var/log/httpd/apache_accept.lock # worker MPM # StartServers: initial number of server processes to start # MaxClients: maximum number of simultaneous client connections # MinSpareThreads: minimum number of worker threads which are kept spare # MaxSpareThreads: maximum number of worker threads which are kept spare # ThreadsPerChild: constant number of worker threads in each server process # MaxRequestsPerChild: maximum number of requests a server process serves StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0