Acabei de instalar o Apache 2.4.7 (Ubuntu) no meu sistema Ubuntu 14.04 LTS e não consigo ver nem as configurações de pré-fork nem de trabalho no /etc/apache2/apache2.conf. Eles também não estão definidos para o host virtual padrão. Devo defini-los no apache2.conf assim?
<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
no/etc/apache2/
. Como isso é possível?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.
?