gloriaJun / til

Lessoned Learned
3 stars 0 forks source link

[nginx] react deploy to nginx #81

Open gloriaJun opened 4 years ago

gloriaJun commented 4 years ago

Version

Solution

react 하위 경로로 바로 접근 시에 404 에러가 발생하여 conf/nginx.conf 파일에 아래와 같이 추가해주었음.

    server {
        // ...SKIP....
         # Any route that doesn't have a file extension (e.g. /devices)
        location / {
            try_files $uri $uri/ /index.html;
        }
    }

Reference