标签: docker nginx docker-compose nginx-reverse-proxy
我可以在主机服务器上使用 localhost:8080 卷曲应用程序,但无法反向代理我的 docker 容器,该容器为暴露在端口 8080 上的 Node.js hello world 应用程序提供服务。
localhost:8080
我的 Nginx 服务在 docker 主机上,不是容器。 Nginx 显示默认错误页面,没有其他内容。
location / { proxy_pass http://localhost:8080; }