Nginx 作为具有 75% 和 25% 加权路由的负载均衡器
Nginx as load balancer with 75% and 25% weighted routing
我是 Nginx 新手。我有两台服务器 serverA 和 serverB。我希望 75% 的请求转到 serverA,剩下 25% 的请求转到 serverB。这可能吗?
使用 nginx 加权路由:
stream {
upstream stream_backend {
server srv1.example.com weight=75;
server srv2.example.com weight=25;
}
server {
listen 80;
proxy_pass stream_backend;
}
}
http://nginx.org/en/docs/http/load_balancing.html#nginx_weighted_load_balancing
我是 Nginx 新手。我有两台服务器 serverA 和 serverB。我希望 75% 的请求转到 serverA,剩下 25% 的请求转到 serverB。这可能吗?
使用 nginx 加权路由:
stream {
upstream stream_backend {
server srv1.example.com weight=75;
server srv2.example.com weight=25;
}
server {
listen 80;
proxy_pass stream_backend;
}
}
http://nginx.org/en/docs/http/load_balancing.html#nginx_weighted_load_balancing