sudo apt install nodejs npm
1.1. 설치 확인
node -v
npm -v
sudo apt update
sudo apt install nginx
/etc/nginx/sites-available/geugol.conf
/etc/nginx/sites-enabled/geugol.conf
server {
listen 80; //포트
location / {
root /home/geugol-react/build; //빌드경로
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}