Fix: Remove trailing slash from alias path (following admin dashboard pattern)
All checks were successful
Deploy Nginx Config to Ubuntu Server / deploy (push) Successful in 2s

This commit is contained in:
happybell80 2025-11-28 16:50:32 +09:00
parent d139799db7
commit 630a5d6449

View File

@ -210,7 +210,7 @@ server {
# IR Valuation Frontend - must come before / for priority # IR Valuation Frontend - must come before / for priority
location ^~ /ir-valuation { location ^~ /ir-valuation {
alias /home/admin/frontend-ir-valuation/dist/; alias /home/admin/frontend-ir-valuation/dist;
try_files $uri $uri/ /ir-valuation/index.html; try_files $uri $uri/ /ir-valuation/index.html;
index index.html; index index.html;
} }