Je viens d'installer Apache 2.4.7 (Ubuntu) sur mon système Ubuntu 14.04 LTS et je ne vois ni paramètres de préfork ni de travailleur dans /etc/apache2/apache2.conf. Ils ne sont pas non plus définis pour l'hôte virtuel par défaut. Dois-je les définir moi-même dans apache2.conf?
<IfModule mpm_prefork_module>
StartServers 2
MinSpareServers 2
MaxSpareServers 5
MaxClients 200 #must be customized
ServerLimit 200 #must be customized
MaxRequestsPerChild 100
</IfModule>
conf.d
au/etc/apache2/
. Comment est-ce possible?Your MaxRequestsPerChild seems very low - this can be in the thousands. If you are running mod_php your MaxClients should be lowered significantly, unless you have many gigs of RAM.
?