From ba597ac187589646822144c7af8a4e82e0ab9248 Mon Sep 17 00:00:00 2001 From: happybell80 Date: Fri, 28 Nov 2025 16:47:44 +0900 Subject: [PATCH] Fix: IR Valuation nginx try_files configuration --- server-nginx-default | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server-nginx-default b/server-nginx-default index 80d9239..94405ba 100644 --- a/server-nginx-default +++ b/server-nginx-default @@ -92,7 +92,8 @@ server { # IR Valuation Frontend location /ir-valuation { alias /home/admin/frontend-ir-valuation/dist/; - try_files $uri /ir-valuation/index.html; + try_files $uri $uri/ /ir-valuation/index.html; + index index.html; } # API endpoints -> route to gateway (host 8100 -> container 8000) @@ -236,7 +237,8 @@ server { # IR Valuation Frontend location /ir-valuation { alias /home/admin/frontend-ir-valuation/dist/; - try_files $uri /ir-valuation/index.html; + try_files $uri $uri/ /ir-valuation/index.html; + index index.html; } # API endpoints -> route to gateway (host 8100 -> container 8000)