如何配置多个upstream
时间: 2024-06-01 17:13:57 浏览: 70
oracle stream详细配置
在Nginx配置文件中,可以使用upstream指令来定义多个upstream服务器。例如:
upstream backend {
server backend1.example.com;
server backend2.example.com;
}
然后,在location指令中使用proxy_pass指令代理到upstream服务器:
location / {
proxy_pass http://backend;
}
这样,请求就会被代理到多个upstream服务器中的其中一个。
阅读全文