From aaa6efbbb0de0a9d784cda596e61fd684e4ff571 Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 22 Jul 2022 16:46:02 +0530 Subject: [PATCH] better worst-case performance for static files served by NGINX --- docs/example.nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/example.nginx.conf b/docs/example.nginx.conf index e4a6ca41b..5c0bef47d 100644 --- a/docs/example.nginx.conf +++ b/docs/example.nginx.conf @@ -242,5 +242,5 @@ server { } # Finally, serve anything the above exceptions don't govern. - try_files /customize/www/$uri /customize/www/$uri/index.html /www/$uri /www/$uri/index.html /customize/$uri; + try_files /customize/www/$uri/index.html /www/$uri /www/$uri/index.html /customize/$uri; }