From fc49f1962f7a770567ce8a0892181b44f66e1fd8 Mon Sep 17 00:00:00 2001 From: Riley Grant Date: Tue, 7 Jan 2025 13:15:50 -0600 Subject: [PATCH] fix(browser): update Nginx config with static paths --- deploy/dockerfiles/browser/browser.nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deploy/dockerfiles/browser/browser.nginx.conf b/deploy/dockerfiles/browser/browser.nginx.conf index 017bd1933..ef6ee880f 100644 --- a/deploy/dockerfiles/browser/browser.nginx.conf +++ b/deploy/dockerfiles/browser/browser.nginx.conf @@ -82,6 +82,9 @@ server { rewrite ^/about/?$ /index.html last; rewrite ^/federated/?$ /index.html last; + rewrite ^/team/?$ /index.html last; + rewrite ^/stats/?$ /index.html last; + rewrite ^/policies/?$ /index.html last; rewrite ^/downloads/?$ /index.html last; rewrite ^/terms/?$ /index.html last; rewrite ^/publications/?$ /index.html last;