gpt4 book ai didi

node.js - Nginx 连接在连接到 Docker 容器内的 Node.js 上游时被拒绝

转载 作者:搜寻专家 更新时间:2023-10-31 22:55:22 26 4
gpt4 key购买 nike

我有以下设置:

以 supervisord 作为入口点的 Docker 容器,supervisord 运行一个 Node.js 进程和 Nginx 代理。Nginx 端口暴露在外。

在主机上,另一个 Nginx 用于 SSL 终止和 vhost 路由/负载平衡,它用作 Docker 容器的代理。

我遇到了一些奇怪的问题,有时 Docker 容器内的 Nginx 服务器在连接到上游 Node.js 服务器时报告错误。似乎 HTTP 请求是 200,所以即使只有一个上游,它也可能会自动重试?!

另外,在 Node.js 进程 stdout/stderr.. 中没有错误或崩溃的迹象。

这是我看到的错误:

2014/07/31 12:48:54 [error] 15#0: *10 connect() failed (111: Connection refused) while connecting to upstream, client: 172.17.42.1, server: f074d2f4389f, request: "GET /users/me HTTP/1.1", upstream: "http://[::1]:3000/users/me", host: "xxx.xxx.com", referrer: "https://xxx.xxx.com/"

可能是什么问题?

这是 supervisord 配置文件:

[supervisord]
nodaemon=true
logfile=/var/log/supervisor/supervisord.log ; supervisord log file
logfile_maxbytes=50MB ; maximum size of logfile before rotation
logfile_backups=10 ; number of backed up logfiles
loglevel=info ; info, debug, warn, trace
pidfile=/var/run/supervisord.pid ; pidfile location
childlogdir=/var/log/supervisor/ ; where child log files will live"

并且这个文件包含在其他文件中:

[include]
files = /etc/supervisor/conf.d/supervisord.conf

[program:api]
command=node api-cluster.js
directory=/src
autorestart=true
startretries=100000000
stdout_logfile=/var/log/supervisor/api_stdout.log
stderr_logfile=/var/log/supervisor/api_stderr.log

[program:nginx]
command=/usr/sbin/nginx
autorestart=true
startretries=100000000
stdout_logfile=/var/log/supervisor/nginx_stdout.log
stderr_logfile=/var/log/supervisor/nginx_stderr.log"

这是 Docker 容器内的 Nginx conf 文件:

# -------------------------------------------------------------------
# Nginx configuraiton
# -------------------------------------------------------------------

worker_processes 4;
daemon off;

error_log stderr info;
pid /var/run/nginx.pid;

events {
#use epoll;
worker_connections 768;
}

http {
##
# Basic Settings
##

sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;

include /etc/nginx/mime.types;
default_type application/octet-stream;

log_format main 'ip=\$http_x_real_ip [\$time_local] '
'"\$request" \$status \$body_bytes_sent "\$http_referer" '
'"\$http_user_agent"' ;

##
# Gzip Settings
##

gzip on;
gzip_disable "msie6";

upstream app_proxy {
server localhost:3000; # nodejs server
}

server {
listen 80 deferred;
server_name \$hostname;
access_log /dev/stdout main;

location ~ ^/(images/|img/|javascript/|js/|css/|stylesheets/|flash/|media/|static/|scripts/|views/|styles/|bower_components/|robots.txt|humans.txt|favicon.ico|home/|html|xml) {
root /src/web/public;
access_log off;
expires max;
}

location / {
proxy_redirect off;
#proxy_set_header X-Real-IP \$remote_addr;
#proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto \$scheme;
proxy_set_header Host \$http_host;
proxy_set_header X-NginX-Proxy true;
proxy_intercept_errors off;
proxy_pass http://app_proxy/;
}
}
}

最佳答案

Nginx 在 IPv6 环回 [::1] 上连接到 nodejs。 nodejs 可能只是在监听 IPv4。

尝试设置

upstream api {
server 127.0.0.1:5000;
}

关于node.js - Nginx 连接在连接到 Docker 容器内的 Node.js 上游时被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25059691/

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