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

nginx负载均衡简单配置

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


nginx负载均衡简单配置
 
在http中配置   www.zhishiwu.com  
Java代码  
upstream test{  
                server 127.0.0.1:8082;  
                server 127.0.0.1:8081;  
        }  
 
并引入
Java代码  
include /etc/nginx/vhosts_conf/*.conf;  
  www.zhishiwu.com  
在vhosts_conf下的conf文件中
 
Java代码  
server {  
                listen 808;  
                server_name www.test.com;  
                index index.jsp index.html index.htm;  
                root /home/www/test.com;  
                location / {  
                        proxy_pass http://test;  
                }  
        }  
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜