Acabo de instalar Apache 2.4.7 (Ubuntu) en mi sistema Ubuntu 14.04 LTS y no puedo ver ni la configuración de prefork ni la de trabajador en /etc/apache2/apache2.conf. Tampoco están definidos para el host virtual predeterminado. ¿Debería configurarlos yo mismo en apache2.conf así?
<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
en el/etc/apache2/
. ¿Cómo es eso posible?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.
?