From 9100c62fabe2e2cf4f883cc1d6499d34db811eee Mon Sep 17 00:00:00 2001 From: Jewgeni Lewash Date: Fri, 8 Mar 2024 08:27:28 +0100 Subject: [PATCH] chore(nginx): expand cache duration to 60 days --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 5199c19..6e7acb6 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -40,7 +40,7 @@ http { try_files $uri $uri/ $uri/index.html =404; location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|webp)$ { - expires 30d; + expires 60d; add_header Cache-Control "public, no-transform"; }