gpt4 book ai didi

node.js - 当尝试作为反向代理连接到 Node 应用程序时,Nginx 连接被拒绝

转载 作者:太空宇宙 更新时间:2023-11-03 23:03:02 26 4
gpt4 key购买 nike

我尝试使用 docker 容器构建一个 web 应用程序,但在尝试运行 Nginx 作为我的 Node 应用程序的反向代理时,连接被拒绝。我不确定这是 nginx 服务器配置问题还是 docker-compose 配置问题。

[error] 5#5: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: foo.com, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:7770/", host: "foo.com"

我在访问 foo.com 时收到此错误,奇怪的是我的应用程序在引用端口号时运行,因此 foo.com:7770 运行该应用程序。

我的 nginx 服务器配置:

server {
listen 80;
server_name foo.com;

port_in_redirect off;
autoindex on;

location / {
proxy_pass http://127.0.0.1:7770;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}

我的 Docker Compose 文件:(这里可能有一些多余的东西)

version: "2"
services:
nginx:
build: ./nginx
ports:
- "80:80"
depends_on:
- app
links:
- app
app:
build:
context: .
dockerfile: DockerFile
ports:
- "7770:7770"
links:
- mongo
depends_on:
- mongo
mongo:
image: mongo
ports:
- "27017:27017"
volumes_from:
- mongodata
depends_on:
- mongodata
mongodata:
image: tianon/true
volumes:
- /data/db

我的 Node Dockerfile:

FROM node:latest

ADD package.json /tmp/package.json
RUN cd /tmp && npm install
RUN mkdir -p /opt/app && cp -a /tmp/node_modules /opt/app/

WORKDIR /opt/app
ADD . /opt/app

EXPOSE 7770

CMD ["npm", "start"]

我的 ngnix Dockerfile

FROM nginx:1.10

COPY default.conf /etc/nginx/conf.d/default.conf

在 npm start 上,这将运行:

app.get('*', function(req, res) {
res.sendFile(path.join(__dirname, 'index.html'));
});

app.listen(7770, function(err) {
if (err) {
console.log(err);
return;
}

console.log('Listening at http://localhost:7770');
});

这是我第一次在 docker 运行,所以我可能搞砸了一些事情。另外,我将 foo.com 指向/private/etc/hosts 中的 127.0.0.1。

最佳答案

C-福尔摩斯,

首先,您需要记住每个容器都有自己的网络堆栈,因此您无法在容器内使用localhost来访问在docker主机中运行的服务。

对于这个特定项目,您需要将 Nginx 服务器配置中的 proxy_pass 指令指向到达 app 容器的值。像这样的东西:

proxy_pass http://app:7770;

您需要正确执行此操作,因为在 docker-compose 上下文中,您的容器名称将映射到内部 DNS 条目。这样,您将不需要向外界发布应用程序容器的 7770,并且如果您的 MongoBD 仅由您的应用程序容器访问,您也不需要发布 27017 端口。

关于node.js - 当尝试作为反向代理连接到 Node 应用程序时,Nginx 连接被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42670793/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com