Я только что установил Apache 2.4.7 (Ubuntu) в своей системе Ubuntu 14.04 LTS и не вижу ни prefork, ни рабочих настроек в /etc/apache2/apache2.conf. Они также не определены для виртуального хоста по умолчанию. Должен ли я установить их сам в 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
на/etc/apache2/
. Как это возможно?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.
?