반응형
프론트엔드 개발에 많이 사용하는 reactjs와 vuejs는 nginx와 연동을 많이 하는데요.
많이 발견되는 실수가 try_files에서 "/"를 빼먹는 점입니다.
아래가 틀린 부분인데요. 한번 찾아보실래요?.
location / {
root /app;
index index.html;
try_files $uri $uri /index.html;
}
정답은 바로 $uri/에서 "/"가 빠져있었습니다.
location / {
root /app;
index index.html;
try_files $uri $uri/ /index.html;
}
반응형
'전공영역 공부 기록' 카테고리의 다른 글
windows10에 chocolatey설치 (0) | 2022.04.30 |
---|---|
wsl 버전확인과 버전 다운 (0) | 2022.04.26 |
jenkins pipeline sh 명령어 공백 제거 (0) | 2022.04.24 |
Systems Manager를 이용한 EC2 원격쉘 접속 (0) | 2022.04.24 |
AWS profile 관리 (0) | 2022.04.24 |