From a0f5caee58ed451e9f3ed132c5a41c0f51dac99b Mon Sep 17 00:00:00 2001 From: dpeca Date: Mon, 23 Sep 2019 15:07:31 +0200 Subject: [PATCH] Do not try_files if static file not exists --- install/debian/10/templates/web/nginx/hosting.stpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/debian/10/templates/web/nginx/hosting.stpl b/install/debian/10/templates/web/nginx/hosting.stpl index d62b5171..0c456c5e 100755 --- a/install/debian/10/templates/web/nginx/hosting.stpl +++ b/install/debian/10/templates/web/nginx/hosting.stpl @@ -13,7 +13,7 @@ server { access_log /var/log/%web_system%/domains/%domain%.log combined; access_log /var/log/%web_system%/domains/%domain%.bytes bytes; expires max; - try_files $uri @fallback; + # try_files $uri @fallback; } }