Web: Config: Added nginx rewrite from /management to /

This commit is contained in:
Ilya Oleshko 2023-08-25 10:09:22 +03:00
parent b61d807054
commit 9f9a3807bc

View File

@ -203,6 +203,8 @@ server {
location ~* /static/fonts/(?<content>[^/]+) {
try_files /fonts/$content/$basename /index.html =404;
}
rewrite management/(.*) /$1 break;
}
location ~* /static/fonts/(?<content>[^/]+) {