7.3-Splash负载均衡配置
1. 配置 Splash 服务
2. 配置负载均衡
http {
upstream splash {
least_conn;
server 41.159.27.223:8050;
server 41.159.27.221:8050;
server 41.159.27.9:8050;
server 41.159.117.119:8050;
}
server {
listen 8050;
location / {proxy_pass http://splash;}
}
}3. 配置认证
4. 测试
Last updated
Was this helpful?