오류 로그에 아래 오류 메시지가 계속 표시되면 모든 리소스에 액세스 할 수 있지만 오류가 표시되는 이유는 확실하지 않습니다.
오류:
[오류] 13368 # 0 : 업스트림에 연결하는 동안 * 449 connect () 실패 (111 : 연결 거부), 클라이언트 : xxxx, 서버 : myserver.com, 요청 : "GET / stories / mine HTTP / 1.1", 업스트림 : " http : // [:: 1] : 5000 / stories / mine ", 호스트 :"myserver.com "
내 Nginx 설정
node.js
포트 5000에서 실행 되는 클러스터로 연결을 전달하고 있습니다. 놓친 항목을 볼 수 없습니까?
upstream api {
server localhost:5000;
}
server {
listen 80;
server_name myserver.com;
root /home/user/_api;
# Logging
error_log /home/user/log/api.error.log notice;
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_set_header Connection "";
proxy_cache one;
proxy_cache_key sfs$request_uri$scheme;
proxy_pass http://api;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
2015 년 이며이 같은 문제가 있습니다. 웹 소켓 메시지가 삭제 될 때마다이 오류가 로그에 나타납니다.
—
r3wt