From 87cac3fecb4a93ed0e752743144e5bd70e0248ff Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 14 Jan 2024 16:14:43 +0000 Subject: [PATCH] Ensure cache files remain active for a while --- etc/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/nginx.conf b/etc/nginx.conf index b3834fa..a12dbbd 100644 --- a/etc/nginx.conf +++ b/etc/nginx.conf @@ -1,4 +1,4 @@ -proxy_cache_path /tmp/nginx_cache levels=1:2 keys_zone=nginxcache:10m max_size=150m; +proxy_cache_path /tmp/nginx_cache levels=1:2 keys_zone=nginxcache:10m max_size=150m inactive=24h; client_body_temp_path /tmp/client_temp; proxy_temp_path /tmp/proxy_temp_path;