Deploy Angular Apps with Nginx

Charles·2021년 3월 29일
0

! 노트해두었던 nginx 설정 방법에 오류가 있어 새로운 방법을 업데이트 해둔다.
note version

Nginx 설치 및 명령어

1. 환경 설정 파일 편집

sudo vi /etc/nginx/sites-enabled/default

2. Add the Configration

Nginx version

nginx version: nginx/1.14.0 (Ubuntu)

server {
    listen 80;
    listen [::]:80;
    server_name www.example.com example.com;
    root /var/www/example.com;
    index index.html;
    location / {
        try_files $uri$args $uri$args/ $uri $uri/ /index.html;
    }
}
profile
undefined 💁🏻‍♂️

0개의 댓글