From afc0ccf06b22483f7ecef8fb27a8c0d24257ec3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20S=C3=A1nchez?= Date: Fri, 26 Jun 2026 11:31:36 -0600 Subject: [PATCH] fix[frontend](ngnx): integrations page default to /index.html --- frontend/nginx/default.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/nginx/default.conf b/frontend/nginx/default.conf index 5aa88c308..8cc97e6c6 100644 --- a/frontend/nginx/default.conf +++ b/frontend/nginx/default.conf @@ -15,6 +15,14 @@ server { try_files $uri =404; } + location = /integrations { + try_files /index.html =404; + } + + location /integrations/ { + try_files $uri $uri/ /index.html; + } + location / { try_files $uri /index.html; }