方向代理
shell
# 反向代理,处理管理端发送的请求
location /api/ {
#proxy_pass http://localhost:8080/admin/;
proxy_pass http://webservers/admin/;
}
负载均衡
反向代理到 webservers 按照一定的权重进行负载均衡了
shell
upstream webservers{
server 127.0.0.1:8080 weight=90 ;
server 127.0.0.1:8088 weight=10 ;
}