From 6a4e15df81a3220f6ebd98ad84653ed04c4d4a46 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 21 Apr 2021 12:34:37 +0200 Subject: [PATCH] Cache only up to 10 minutes in nginx example. --- doc/nginx-example.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/nginx-example.conf b/doc/nginx-example.conf index aae6424..3d2e2e3 100644 --- a/doc/nginx-example.conf +++ b/doc/nginx-example.conf @@ -28,7 +28,7 @@ server { fastcgi_param GITEA2RSS_BASEURL "https://git.example.com"; fastcgi_cache gitea2rss; - fastcgi_cache_valid 200 20m; # Cache answers for up to 20 minutes. + fastcgi_cache_valid 200 10m; # Cache answers for up to 10 minutes. fastcgi_cache_lock on; # Relay only one identical request at a time. } }