我正在尝试使用Nginx代理传递给两个Docker容器。这是我的上游conf文件:
upstream api_servers {
server http://192.168.49.4:49155;
server http://192.168.49.4:49156;
}
这是我尝试加载的内容:
nginx: [emerg] invalid host in upstream "http://192.168.49.4:49155" in /etc/nginx/conf.d/api_upstream.conf:3
nginx: configuration file /etc/nginx/nginx.conf test failed
一旦删除了http://前缀,错误就会停止发生。这是为什么?