如何设置Apache 2.2 worker模块以有效运行Wordpress

时间:2018-09-27 22:04:43

标签: wordpress apache performance apache2

我有一个带Debian的8GB RAM的Linode服务器。我在上面安装了Wordpress 4.9.4和自定义主题(http://champion.stylemixthemes.com/

完成安装后,我发现服务器运行太慢,因此我访问了apache2.conf并找到了此设置。重要的是要提到使用prefork模块运行Apache 2.2

Timeout 300

KeepAlive On

MaxKeepAliveRequests 100

KeepAliveTimeout 15

<IfModule mpm_prefork_module>
    StartServers         2 
    MinSpareServers      6 
    MaxSpareServers      12
    MaxClients           80 
    MaxRequestsPerChild   3000
</IfModule>

这是一个登台服务器,不是用于高流量的服务器,因此基本上,我需要此服务器具有更好的性能才能工作,因为现在加载首页太慢了。

感谢您的回答!

0 个答案:

没有答案