Nginx: add campaigns location

This commit is contained in:
Viktor Fomin 2024-02-07 16:51:08 +03:00
parent 5a36c1fad8
commit c53e2d26e5

View File

@ -196,6 +196,11 @@ server {
location ~* /static/images/(.*)$ { location ~* /static/images/(.*)$ {
try_files /images/$1 /index.html =404; try_files /images/$1 /index.html =404;
} }
location ~* /static/campaigns/(.*)$ {
try_files /campaigns/$1 /index.html =404;
}
} }
location /doceditor { location /doceditor {