diff --git a/server-nginx-default b/server-nginx-default index fb64851..80d9239 100644 --- a/server-nginx-default +++ b/server-nginx-default @@ -89,6 +89,12 @@ server { 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) location /api/ { proxy_pass http://localhost:8100; @@ -227,6 +233,12 @@ server { 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) location /api/ { proxy_pass http://localhost:8100;