我们在具有16GB内存和4核CPU的VPS上运行Wordpress网站+ Apache / PHP-FP,流量每天只有大约60 UV /每天,使用X-theme和30多个基石的Wordpress并不多插件。
由于某种原因,内存消耗非常快,我不得不每天几次重启HTTPD和PHP-FPM服务以释放内存。
有人可以告诉我我的配置是否针对内存/ CPU使用进行了优化吗?
谢谢!
Config for PHP-FPM
pm = ondemand
pm.max_children = 10
pm.process_idle_timeout = 7s
pm.max_requests = 800
For APACHE config
Timeout 30
KeepAlive On
MaxKeepAliveRequests 400
KeepAliveTimeout 2
<IfModule mpm_event_module>
ServerLimit 1800
StartServers 4
MinSpareThreads 35
MaxSpareThreads 95
ThreadLimit 75
ThreadsPerChild 45
MaxRequestWorkers 1600
MaxConnectionsPerChild 650
</IfModule>