知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Nginx负载均衡配合反向代理使用

发布时间:2014-09-05 15:05:13作者:知识屋

Nginx负载均衡配合反向代理使用
 
设置在http段:   www.zhishiwu.com  
  upstream my_server_pool {
  server 192.168.10.21:80 weight=1 max_fails=2 fail_timeout=30s;
  server 192.168.10.20:80 weight=1 max_fails=2 fail_timeout=30s;
  proxy_cache_path /usr/local/nginx/proxy_temp levels=1:2 keys_zone=cache_one:500m  inactive=1d   max_size=1g;
设置在server段:   www.zhishiwu.com  

  location /sms {
 proxy_pass http://my_server_pool;
 proxy_set_header Host $host;
 proxy_cache cache_one;
 proxy_set_header X-Forwarded-For $remote_addr;
 proxy_cache_valid 200 10m;
 proxy_cache_valid 304 1m;
 proxy_cache_valid 301 302 1h;
 proxy_cache_valid any 1m;
 proxy_cache_key $host$uri$is_args$args;
 }
测试:
 
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜