-
Notifications
You must be signed in to change notification settings - Fork 14
AWS EC2에 Nginx, NodeJS, vite 설치 및 환경 세팅하기
kyoshong edited this page Dec 23, 2021
·
2 revisions
chmod 400 ~/keys/swlabs-cadet.pem
ssh -i ~/keys/swlabs-cadet.pem ec2-user@3.38.166.176
sudo amazon-linux-extras install nginx1.12
sudo systemctl start nginx
💡 sudo yum update
curl localhost
mkdir local
cd local
node 설치
//node 설치
wget https://nodejs.org/dist/v16.13.1/node-v16.13.1-linux-x64.tar.xz
//압축 풀기
tar xvf node-v16.13.1-linux-x64.tar.xz
//확인
ls -altr
cd node-v16.13.1-linux-x64/bin
짝수 버전 - 안정적인 배포
홀수 버전 - 테스트용
vi ~/.bash_profile
source ~/.bash_profile
sudo amazon-linux-extras list
npm init vite 42cabi -- --template react-ts
cd 42cabi
npm i
npm run dev - 개발용
npm run build - 빌드용
npx vite --host - 실행
vi /etc/nginx/nginx.conf
위와 같이 수정!
sudo nginx -t
sudo systemctl restart nginx