From 9f9a3807bcc667fb6ead1d4bd955cd56d4e95ef5 Mon Sep 17 00:00:00 2001 From: Ilya Oleshko Date: Fri, 25 Aug 2023 10:09:22 +0300 Subject: [PATCH] Web: Config: Added nginx rewrite from /management to / --- config/nginx/onlyoffice.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/nginx/onlyoffice.conf b/config/nginx/onlyoffice.conf index 035ff85c77..12969cf833 100644 --- a/config/nginx/onlyoffice.conf +++ b/config/nginx/onlyoffice.conf @@ -203,6 +203,8 @@ server { location ~* /static/fonts/(?[^/]+) { try_files /fonts/$content/$basename /index.html =404; } + + rewrite management/(.*) /$1 break; } location ~* /static/fonts/(?[^/]+) {