我的httpd-mpm.conf
ServerLimit 2000
StartServers 10
MinSpareServers 10
MaxSpareServers 15
MaxClients 1000
MaxRequestsPerChild 10000
</IfModule>
<IfModule mpm_worker_module>
StartServers 3
MaxClients 600
MinSpareThreads 50
MaxSpareThreads 100
ThreadsPerChild 100
MaxRequestsPerChild 10000
</IfModule>
如何设置httpd-mpm.conf 的参数呢?
none