mirror of
https://github.com/joglomedia/LEMPer.git
synced 2026-04-13 00:18:31 +00:00
14 lines
340 B
Plaintext
14 lines
340 B
Plaintext
## FastCGI cache.
|
|
# Designed to be included in any server {} block below .php directives.
|
|
|
|
fastcgi_cache FASTCGICACHE;
|
|
fastcgi_cache_valid 200 301 302 60m;
|
|
fastcgi_cache_valid 404 1m;
|
|
fastcgi_cache_valid any 60m;
|
|
fastcgi_cache_min_uses 1;
|
|
|
|
fastcgi_cache_bypass $skip_cache $is_mobile;
|
|
fastcgi_no_cache $skip_cache $is_mobile;
|
|
|
|
expires 30d;
|