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; }