1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
AVANT :
Timeout 30
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 3
<IfModule mpm_prefork_module>
StartServers 2
MinSpareServers 3
MaxSpareServers 10
MaxClients 250
MaxRequestsPerChild 10000
</IfModule>
<IfModule mpm_worker_module>
StartServers 10
MaxClients 250
MinSpareThreads 10
MaxSpareThreads 40
ThreadsPerChild 25
MaxRequestsPerChild 5
</IfModule>
---------------------------------------------------
Apres :
Timeout 10
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 3
<IfModule mpm_prefork_module>
StartServers 1
MinSpareServers 2
MaxSpareServers 5
MaxClients 40
MaxRequestsPerChild 1000
</IfModule>
<IfModule mpm_worker_module>
StartServers 1
MaxClients 40
MinSpareThreads 2
MaxSpareThreads 10
ThreadsPerChild 15
MaxRequestsPerChild 5
</IfModule> |
Partager