2017-11-03 3 views
0

임 nginx 및 NodeJS에 새로운 기능이 있습니다. 나는 포트 3000에서 익스프레스 서버에 대한 리버스 프록시로 Fedora 26 머신에서 내 nginx 서버를 구성하려고합니다. 모든 단계를 밟았지만 어떤 이유로 504 게이트웨이 시간 초과 오류가 있습니다.익스프레스 서버 504 용 리버스 프록시로 nginx 게이트웨이 시간 제한

이 내 /etc/nginx/nginx.conf 파일 : 당신이 볼 수 있듯이

# For more information on configuration, see: 
# * Official English Documentation: http://nginx.org/en/docs/ 
# * Official Russian Documentation: http://nginx.org/ru/docs/ 

user nginx; 
worker_processes auto; 
error_log /var/log/nginx/error.log; 
pid /run/nginx.pid; 

# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. 
include /usr/share/nginx/modules/*.conf; 

events { 
    worker_connections 1024; 
} 

http { 
    log_format main '$remote_addr - $remote_user [$time_local] "$request" ' 
         '$status $body_bytes_sent "$http_referer" ' 
         '"$http_user_agent" "$http_x_forwarded_for"'; 

    access_log /var/log/nginx/access.log main; 

    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; 

    # Load modular configuration files from the /etc/nginx/conf.d directory. 
    # See http://nginx.org/en/docs/ngx_core_module.html#include 
    # for more information. 
    include /etc/nginx/conf.d/*.conf; 
    include /etc/nginx/sites-enabled/*; 

    server { 
     listen  80 default_server; 
     listen  [::]:80 default_server; 
     server_name _; 
     root   /usr/share/nginx/html; 

     # Load configuration files for the default server block. 
     include /etc/nginx/default.d/*.conf; 

     location/{ 
      try_files $uri /index.html; 
     } 

     error_page 404 /404.html; 
      location = /40x.html { 
     } 

     error_page 500 502 503 504 /50x.html; 
      location = /50x.html { 
     } 
    } 

# Settings for a TLS enabled server. 
# 
# server { 
#  listen  443 ssl http2 default_server; 
#  listen  [::]:443 ssl http2 default_server; 
#  server_name _; 
#  root   /usr/share/nginx/html; 
# 
#  ssl_certificate "/etc/pki/nginx/server.crt"; 
#  ssl_certificate_key "/etc/pki/nginx/private/server.key"; 
#  ssl_session_cache shared:SSL:1m; 
#  ssl_session_timeout 10m; 
#  ssl_ciphers PROFILE=SYSTEM; 
#  ssl_prefer_server_ciphers on; 
# 
#  # Load configuration files for the default server block. 
#  include /etc/nginx/default.d/*.conf; 
# 
#  location/{ 
#  } 
# 
#  error_page 404 /404.html; 
#   location = /40x.html { 
#  } 
# 
#  error_page 500 502 503 504 /50x.html; 
#   location = /50x.html { 
#  } 
# } 

} 

, 나는 사이트 이용 가능한 폴더를 생성 한 후 포함 된 사이트 사용에서 링크를했다. 그렙 3000

tcp6 0 0 :::3000 :::* LISTEN 3524/node 

http://127.0.0.1:3000/ 응답 |

● nginx.service - The nginx HTTP and reverse proxy server 
    Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled) 
    Active: active (running) since Fri 2017-11-03 11:19:17 UTC; 2s ago 
    Process: 937 ExecReload=/bin/kill -s HUP $MAINPID (code=exited, status=0/SUCCESS) 
    Process: 981 ExecStart=/usr/sbin/nginx (code=exited, status=0/SUCCESS) 
    Process: 980 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=0/SUCCESS) 
    Process: 979 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS) 
Main PID: 982 (nginx) 
    Tasks: 2 (limit: 4915) 
    CGroup: /system.slice/nginx.service 
      ├─982 nginx: master process /usr/sbin/nginx 
      └─983 nginx: worker process 

Nov 03 11:19:17 myserver.localdomain systemd[1]: Starting The nginx HTTP and reverse proxy server... 
Nov 03 11:19:17 myserver.localdomain nginx[980]: nginx: [warn] could not build optimal types_hash, you should increase either types_hash_max_size: 2048 or types_hasNov 03 11:19:17 myserver.localdomain nginx[980]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok 
Nov 03 11:19:17 myserver.localdomain nginx[980]: nginx: configuration file /etc/nginx/nginx.conf test is successful 
Nov 03 11:19:17 myserver.localdomain nginx[981]: nginx: [warn] could not build optimal types_hash, you should increase either types_hash_max_size: 2048 or types_hasNov 03 11:19:17 myserver.localdomain systemd[1]: nginx.service: Failed to read PID from file /run/nginx.pid: Invalid argument 
Nov 03 11:19:17 myserver.localdomain systemd[1]: Started The nginx HTTP and reverse proxy server. 

NETSTAT -lntp 다음의 nginx의

# the IP(s) on which your node server is running. I chose port 3000. 
upstream musiciansdb { 
    server 127.0.0.1:3000; 
    keepalive 8; 
} 

# the nginx server instance 
server { 
    listen 0.0.0.0:80; 
    server_name musiciansdb.com musiciansdb; 
    access_log /var/log/nginx/musiciansdb.log; 

    # pass the request to the node.js server with the correct headers 
    # and much more can be added, see nginx config options 
    location/{ 
     proxy_set_header X-Real-IP $remote_addr; 
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
     proxy_set_header Host $http_host; 
     proxy_set_header X-NginX-Proxy true; 
     proxy_http_version 1.1; 
     proxy_set_header Upgrade $http_upgrade; 
     proxy_set_header Connection "upgrade"; 
      proxy_pass http://musiciansdb.com/; 
     proxy_redirect off; 

    } 

} 

상태 :

내부 사이트 이용 가능한 I이있는 파일이 내 애플의 html로

이미 SElinux를 비활성화했습니다.

모든 구성 후에 nginx 서버를 다시 시작하고 컴퓨터를 다시 시작합니다. 내가 포트 3000에 직접 간다면 웹 앱이있다.

무엇이 누락 되었습니까?

감사합니다.

+1

두 서버가 동일한 호스트에서 실행되고 있습니까? (가상 머신, 도커 컨테이너 등은 아닙니까?) – JoshWillik

+0

질문에'sites-available' 폴더에'.conf' 파일을 만들었지 만 nginx config는'sites-enabled '. 이것은 실수입니까? – JoshWillik

+0

@JoshWillik 두 서버가 동일한 호스트에서 실행 중입니다. 나는'sites-available' 안에'.conf' 파일을 만들고'sites-enabled' 내부에 링크 ('ln -s')를했습니다. –

답변

1

이것은 나쁜 행인 것처럼 보입니다.

proxy_pass http://musiciansdb.com/; 

nginx에서 업스트림 백엔드를 만들 때 나중에 동일한 이름으로 참조해야합니다.

당신은이 :

upstream musiciansdb { 
server 127.0.0.1:3000; 
keepalive 8; 
} 

당신은 (.COM없이)이 라인이 백엔드에 프록시 필요

proxy_pass http://musiciansdb; 

그렇지 않으면 당신이 외부에서 (musiciansdb.com에 액세스하려고, 80 포트에서 클라이언트 브라우저로).

또한 serverfault.com은 시스템 관리 질문에 더 좋은 사이트입니다.

+0

어이! 그거였다. 나는 그것을'proxy_pass http : // musiciansdb; '로 변경했고 이제는 작동합니다. 고맙습니다. –