mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-16 18:11:59 +01:00
optimized caching
This commit is contained in:
parent
1a5235be9b
commit
2c4afafd5a
@ -11,17 +11,22 @@ location /
|
|||||||
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
|
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
|
||||||
|
|
||||||
# timeouts
|
# timeouts
|
||||||
proxy_connect_timeout 300;
|
proxy_connect_timeout 60s;
|
||||||
proxy_send_timeout 300;
|
proxy_send_timeout 60s;
|
||||||
proxy_read_timeout 300;
|
proxy_read_timeout 60s;
|
||||||
send_timeout 300;
|
send_timeout 60s;
|
||||||
|
|
||||||
# general caching
|
# general caching
|
||||||
proxy_cache cache;
|
proxy_cache cache;
|
||||||
proxy_cache_key $host$uri$is_args$args;
|
proxy_cache_key $host$uri$is_args$args;
|
||||||
proxy_cache_valid any 1m;
|
proxy_cache_valid any 1m;
|
||||||
proxy_cache_valid 200 301 302 5m;
|
proxy_cache_valid 200 301 302 5m;
|
||||||
expires 5m;
|
proxy_cache_revalidate on;
|
||||||
|
proxy_cache_min_uses 1;
|
||||||
|
proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
|
||||||
|
proxy_cache_background_update on;
|
||||||
|
proxy_cache_lock on;
|
||||||
|
expires 5m;
|
||||||
|
|
||||||
# cache media files
|
# cache media files
|
||||||
location ~* \.(gif|ico|jpg|jpeg|png|svg|mp4|mp3|pdf)$ {
|
location ~* \.(gif|ico|jpg|jpeg|png|svg|mp4|mp3|pdf)$ {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user