fix custom file serving logic for static pages in NGINX

This commit is contained in:
ansuz 2022-09-06 14:36:23 +05:30
parent 4d022a2247
commit c889823fca
1 changed files with 1 additions and 1 deletions

View File

@ -242,5 +242,5 @@ server {
}
# Finally, serve anything the above exceptions don't govern.
try_files /customize/www/$uri/index.html /www/$uri /www/$uri/index.html /customize/$uri;
try_files /customize/www/$uri /customize/www/$uri/index.html /www/$uri /www/$uri/index.html /customize/$uri;
}