
Untitled
By: a guest on
May 8th, 2012 | syntax:
None | size: 0.82 KB | hits: 14 | expires: Never
<IfModule mpm_prefork_module>
StartServers 2
MinSpareServers 1
MaxSpareServers 2
MaxClients 30
MaxRequestsPerChild 10
</IfModule>
# 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
<IfModule mpm_worker_module>
StartServers 2
MaxClients 30
MinSpareThreads 2
MaxSpareThreads 5
ThreadsPerChild 5
MaxRequestsPerChild 7
</IfModule>