From d11dcef74d43d3528f1f8b277d5fe448a5a336cf Mon Sep 17 00:00:00 2001 From: Niels Kunis Date: Sat, 1 Jul 2023 19:16:07 +0200 Subject: [PATCH] cache size to 1 hour (3600 sec) --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index bfc5976..610b4dc 100644 --- a/nginx.conf +++ b/nginx.conf @@ -9,7 +9,7 @@ server { } location ~* \.(?:ico|css|js|gif|jpe?g|png)$ { - expires 30d; + expires 3600; add_header Pragma public; add_header Cache-Control "public"; }