목록 NGINX 설치하기 Node 설치하기 NGINX + Node 연동하기 NGINX 서버에서 설정을 해야합니다. 1) 셀리눅스 보안해제 # setsebool -P httpd_can_network_connect 1 2) nginx 설정파일 수정 -- 선택 1. default.conf 가 include 되어있는 부분을 지우고 직접 입력하기 vi /etc/nginx/nginx.conf -- 선택 2. default.conf 를 수정하기 vi /etc/nginx/conf.d/default.conf proxy_pass http://[Node 서버 아이피]:[Node Port]; server { listen 80; server_name localhost; // 추가내용 location / { proxy_set_h..