From 49283daa4f22db8cf2470072209002625055a8a1 Mon Sep 17 00:00:00 2001 From: Dan Ditomaso Date: Mon, 7 Jul 2025 11:53:42 -0400 Subject: [PATCH] fix: updated nginx config to pass sub directories (#692) --- packages/web/infra/default.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/infra/default.conf b/packages/web/infra/default.conf index 7a5f1103..aff74785 100644 --- a/packages/web/infra/default.conf +++ b/packages/web/infra/default.conf @@ -6,7 +6,7 @@ server { index index.html index.htm; location / { - try_files $uri $uri/ =404; + try_files $uri $uri/ /index.html; } error_page 500 502 503 504 /50x.html;