2022.07.18
- Typescript, NestJS
- Github, AWS EC2(ubuntu), NGINX, Elastic IP
- AWS EC2를 사용해서 Nest.js 프로젝트 배포
- WAS : NGINX 사용 → Nginx Reverse-Proxy 설정
server {
listen 80;
access_log /var/log/nginx/reverse-access.log;
error_log /var/log/nginx/reverse-error.log;
location / {
proxy_pass http://127.0.0.1:3000;
}
}
- 탄력적 IP 사용 → [15.164.111.188] 주소사용
3. Django 프로젝트 생성 → Nest.js 프로젝트 생성
4. IP/api/hello 로 접속하였을때 웹브라우져 상에서 Hello 표시 → 15.165.111.188/api/hello 접속시 ‘Hello’ 표시