Config: Nginx: Fixed route for scripts

This commit is contained in:
Ilya Oleshko 2024-04-11 16:50:32 +03:00
parent ee2b0dcd5c
commit cf0f3366a5

View File

@ -185,8 +185,8 @@ server {
try_files /locales/$content/$basename /index.html =404;
}
location ~* /static/scripts/ {
try_files /scripts/$basename /index.html =404;
location ~* /static/scripts/(.*)$ {
try_files /scripts/$1 /index.html =404;
}
location ~* /static/plugins/ {