如何设置nginx反向代理实现服务器瞬间故障转移

展开全部利用Nginx反向代理原理,实现集群服务器瞬间故障转移,看用于生产环境中综合设置的例子:#注:proxy_temp_path和proxy_cache_path指定的路径必须在同一分区proxy_temp_path /data0/proxy_temp_dir;#设置Web缓存区名称为cache_one,内存缓存空间大小为200MB,1天没有被访问的内容自动清除,硬盘缓存空间大小为30GB。proxy_cache_path /data0/proxy_cache_dir levels=1:2 keys_zone=cache_one:200m inactive=1d max_size=30g;#轮询服务器,weight为服务器权重,与访问频率成正比,max_fails最大超时次数,fail_timeout服务器代理监听超时时间upstream backend_server {server 192.168.203.43:80 weight=1 max_fails=2 fail_timeout=30s;server 192.168.203.44:80 weight=1 max_fails=2 fail_timeout=30s;server 192.168.203.45:80 weight=1 max_fails=2 fail_timeout=30s;}server{listen 80;server_name www.yourdomain.com 192.168.203.42;index index.html index.htm;root /data0/htdocs/www;location /{#如果后端的服务器返回502、504、执行超时等错误,自动将请求转发到upstream负载均衡池中的另一台服务器,实现故障转移。proxy_next_upstream http_502 http_504 error timeout invalid_header;proxy_cache cache_one;#对不同的HTTP状态码设置不同的缓存时间proxy_cache_valid 200 304 12h;#以域名、URI、参数组合成Web缓存的Key值,Nginx根据Key值哈希,存储缓存内容到二级缓存目录内proxy_cache_key $host$uri$is_args$args;proxy_set_header Host $host;proxy_set_header X-Forwarded-For $remote_addr;proxy_pass ;expires 1d;}}