标签: nginx nginx-config
我在Spring Boot中使用NGINX。我使用Spring Boot创建了3台服务器,并配置了NGINX。 我的问题是,如果其中一台服务器引发异常,如何将请求转发到另一台服务器?
这是NGINX的服务器配置
server { listen 80; server_name localhost; location / { proxy_pass http://servers; }