nginx nodejs
-
Nginx에 Node.js 설치하기 ( fast-cgi ) for Centos7Web/Nginx 2020. 10. 5. 09:41
Centos 환경에서 nginx 엔진에 php-fpm을 설치한 후, node.js를 설치하여 환경 설정을 셋팅해보는 방법을 알아보자. php-fpm과 Node.js로 Fast-CGI 세팅하기 1. epel 저장소 확인 $ yum repolist | grep epel * epel: d2lzkl7pfhq30w.cloudfront.net !epel/x86_64 Extra Packages for Enterprise Linux 13,445+1 1-1. epel 저장소가 없으면 설치 $ yum install epel-release 2. Node.js 설치 $ yum -y install nodejs 3. 설치 확인 $ node -v v12.18.4 $ npm -v 6.14.6 node.js 설치 시 npm도 같이 설..