配置文件

位置 : /usr/local/software/nginx/conf

vim nginx.conf

在http大括号下配置:

upstream wnBalance{
server ip:端口 weight=比重 :1或者2; 1为配重高
server ip:端口 weight=1;

}

wnBalance : 代表括号中两个ip的变量名

位置 : /usr/local/software/nginx/conf/conf.d

配置default.conf

vim default.conf

location / {
#root /usr/share/nginx/html;
#index index.html index.htm;
proxy_pass http://wnBalance/api/nginx/hello;
}

wnBalancenginx.conf中upstream后面的文件名 后面跟上具体的接口

保存重启nginx后访问nginx的网站就会根据配重随机访问定义的服务器