We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d48186b commit 35f03c8Copy full SHA for 35f03c8
1 file changed
nginx.conf
@@ -9,14 +9,6 @@ server {
9
10
# SPA 라우팅을 위한 설정 (가장 중요)
11
location /admin/ {
12
- # 1. 요청된 주소(URI)에 해당하는 파일이 있는지 찾아본다.
13
- # 2. 파일이 없으면, 해당 주소의 디렉토리가 있는지 찾아본다.
14
- # 3. 그래도 없으면, 그냥 index.html 을 대신 보여준다.
15
- try_files $uri $uri/ /admin/index.html;
16
- }
17
-
18
- # SPA 라우팅을 위한 설정 (가장 중요)
19
- location / {
20
# 1. 요청된 주소(URI)에 해당하는 파일이 있는지 찾아본다.
21
# 2. 파일이 없으면, 해당 주소의 디렉토리가 있는지 찾아본다.
22
# 3. 그래도 없으면, 그냥 index.html 을 대신 보여준다.
0 commit comments