nginx 前端代理 负载均衡

1.windows情况

1)下载nginx下载地址:http://sysoev.ru/nginx/nginx-0.8.22.zip

2)解压修改\conf\nginx.conf文件

找到内容server{

在这上面加入如下内容:

upstreamxueit.com{

server127.0.0.1:8888;//两个tomcat一个端口号改为8888一个8080

server172.0.0.1:8080;

}

3)找到location/{

roothtml;

indexindex.htmlindex.htm;

}

把内容更改如下:

location/{

proxy_passhttp://xueit.com;

proxy_redirectdefault;

}

2.linux情况,正式应用可加入负载均衡

可参考(未亲测):http://hi.baidu.com/snny2008/blog/item/f3b78f95833671187af48074.html