Właśnie zainstalowałem Apache 2.4.7 (Ubuntu) na moim systemie Ubuntu 14.04 LTS i nie widzę ani preforków, ani ustawień roboczych w /etc/apache2/apache2.conf. Nie są również zdefiniowane dla domyślnego wirtualnego hosta. Czy powinienem sam ustawić je w 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
na/etc/apache2/
. Jak to możliwe?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.
?