diff --git a/ui/container-files/etc/nginx/conf.d/default.conf b/ui/container-files/etc/nginx/conf.d/default.conf index d354825bc..a91d86fc7 100644 --- a/ui/container-files/etc/nginx/conf.d/default.conf +++ b/ui/container-files/etc/nginx/conf.d/default.conf @@ -33,8 +33,10 @@ server { expires off; etag off; - # The load balancer is Temporarily configured to forward all requests for '^/ui(.*)' to this docker container running nginx listening on port 8090. - # The context path for this app will eventully be changed to the root dir '/' and the Gateway App will be decomissioned and all rewrites and location blocks will need to be re-assessed and updated. + # Redirect Old Links + rewrite ^/member(.*)$ /en/members$1; + rewrite ^/user(.*)$ /en/users$1; + rewrite ^/assertion(.*)$ /en$1; # Temporary Rule, when the UI app is served from the root instead of `/ui` then this rewrite rule can be removed. rewrite ^/ui/(.*)$ /$1 last;