Cache only up to 10 minutes in nginx example.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2021-04-21 12:34:37 +02:00
parent 82261aadfb
commit 6a4e15df81
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -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.
}
}