@
egoate 内存经常爆炸加上 SWAP 会好一些
我的网站现在的配置就和你类似, OVH 的大内存 VPS + 香港反代。
最好 wp 开 supercache 的 preload ,并在两个主机上实时同步缓存 html 的文件夹,这样能减少需要代理的次数,增加缓存命中率。我的配置:
https://git.tlo.xyz/ZE3kr/ZE3kr.com/snippets/6最后部分改成:
location / {
try_files /wp-content/cache/supercache/$http_host/$cache_uri/index-https.html /wp-content/cache/supercache/$http_host/$cache_uri @
proxy;
}
location @
proxy {
include global/proxy.conf;
}
global/proxy.conf 样例
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_http_version 1.1;
# proxy_buffering off;
proxy_hide_header Vary;
proxy_hide_header Strict-Transport-Security;
proxy_pass https://backend;
add_header X-Cache $upstream_cache_status;
proxy_cache webserver;
这是我的配置,供你做参考。