From b4ac7ac2b8ba709328e43217a92c5aa75879a19c Mon Sep 17 00:00:00 2001 From: happybell80 Date: Fri, 28 Nov 2025 16:46:05 +0900 Subject: [PATCH] Add IR Valuation frontend route to nginx --- server-nginx-default | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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;