当上游服务器连接到NGINX后端服务器(节点)时,你有一个502坏网关问题。
如果我在后端服务器上使用NGINX,那么我得到502坏网关,如果我使用apache web服务器则没有错误。如果我使用IP而不是域示例服务器192.101.876.76:8081
并不重要nginx.conf
http {
upstream appserver {
server backend1.example.com; # with NGINX web server gives an 502 bad gateway when connected, with apache works fine
server backend2.example.com; # with NGINX web server gives an 502 bad gateway when connected, with apache works fine
}
}
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://appserver;
}
}
**如果我在backend1.example.com和backend2.example.com上使用Apache Web服务器,那么它可以工作。但我想使用nginx,因为它比apache更可靠,更快。
为什么它不能与NGINX后端服务器一起使用?