so easy.
step1:进入目nginx安装目录 cd /usr/local/nginx/conf
step2:修改nginx.conf
upstream 127.0.0.1 { #服务器集群名字
server 127.0.0.1:18080 weight=1;#服务器配置 weight是权重的意思,权重越大,分配的概率越大。
server 127.0.0.1:28080 weight=2;
}
location / {
#此处配置的域名必须与upstream的域名一致,才能转发。
proxy_pass http://127.0.0.1; #这里要和upstream 域名一样
}