我正在docker容器中运行nginx
服务器,并且在nginx.conf
文件中,我需要使用不同的端口访问某些地址(目前为localhost)。
当前我要输入127.0.0.1
地址,它是nginx容器的本地主机地址。
所以我需要替换它。
这里是nginx.conf
:
http {
upstream allbackend {
#ip_hash;
server 127.0.0.1:9000; <- this is a container localhost
server 127.0.0.1:9001;
server 127.0.0.1:9002;
server 127.0.0.1:9003;
}
server {
listen 80;
location / {
proxy_pass http://allbackend/;
}
location /admin {
return 403;
}
}
}
events {}
在server
指令中,如何连接到外部localhost
?
我现在在容器的日志中得到此错误:
2020/10/31 14:00:34 [error] 103#103: *11 connect() failed (111: Connection refused) while connecting to upstream, client: 172.17.0.1, server: , request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:9003/", host: "localhost:4000"