基于NGINX配置集群
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于NGINX配置集群相关的知识,希望对你有一定的参考价值。
1.图解
2.开启nginx upstream 模块
http://nginx.org/en/docs/
http
{
upstream daili {
server 118.89.245.175:80;
server 118.89.236.154:80;
}
}
server
{
location / {
proxy_pass http://daili;
proxy_read_timeout 300;
proxy_connect_timeout 300;
proxy_redirect off;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
}
}
3.开启数据库主从
http://blog.51cto.com/benchmarking/1886779
4.图片同步
http://blog.51cto.com/benchmarking/2112126
以上是关于基于NGINX配置集群的主要内容,如果未能解决你的问题,请参考以下文章