Skip to content

Commit

Permalink
Merge pull request #164 from wnsgho/develop
Browse files Browse the repository at this point in the history
[Mod] nginx 서버 설정 변경
  • Loading branch information
wnsgho authored Dec 9, 2024
2 parents 579e07c + fd6f78e commit 6c5f8f8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ server {
server_name localhost;

# Frontend static files
location /src/assets/ {
root /usr/share/nginx/html;
autoindex on;
}

location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
Expand Down

0 comments on commit 6c5f8f8

Please sign in to comment.