Add IR Valuation frontend route to nginx
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:46:05 +09:00
parent 920672ae1b
commit b4ac7ac2b8

View File

@ -89,6 +89,12 @@ server {
try_files $uri /goosefarm/index.html; try_files $uri /goosefarm/index.html;
} }
# IR Valuation Frontend
location /ir-valuation {
alias /home/admin/frontend-ir-valuation/dist/;
try_files $uri /ir-valuation/index.html;
}
# API endpoints -> route to gateway (host 8100 -> container 8000) # API endpoints -> route to gateway (host 8100 -> container 8000)
location /api/ { location /api/ {
proxy_pass http://localhost:8100; proxy_pass http://localhost:8100;
@ -227,6 +233,12 @@ server {
try_files $uri /goosefarm/index.html; try_files $uri /goosefarm/index.html;
} }
# IR Valuation Frontend
location /ir-valuation {
alias /home/admin/frontend-ir-valuation/dist/;
try_files $uri /ir-valuation/index.html;
}
# API endpoints -> route to gateway (host 8100 -> container 8000) # API endpoints -> route to gateway (host 8100 -> container 8000)
location /api/ { location /api/ {
proxy_pass http://localhost:8100; proxy_pass http://localhost:8100;