From 4beee31b936a6db58e66bdb33c3852250e6485dc Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Sat, 20 Aug 2022 21:03:27 +0200 Subject: [PATCH] Only cache static files for 12h --- defaults/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/nginx.conf b/defaults/nginx.conf index 8a80916..944ade0 100644 --- a/defaults/nginx.conf +++ b/defaults/nginx.conf @@ -40,7 +40,7 @@ http { } location ~* \.(js|css|png)$ { - expires 3d; + expires 12h; } } }