Skip to content

Commit

Permalink
build : nginx conf
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeyo03 authored Nov 5, 2024
1 parent 672b114 commit c02bb64
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ http {
# 정적 파일 서빙 - /page 경로를 처리하기 위한 설정
location /page/ {
alias /usr/share/nginx/html/;
try_files $uri $uri/ /usr/share/nginx/html/index.html;
}

location /page/home {
alias /usr/share/nginx/html/;
}
}
}

0 comments on commit c02bb64

Please sign in to comment.