X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/6b8e67103d90b327fb6eb1dd859cfd7f7d18340f..3e900ed9cdd628dc8e9de15e495fa4878191f4fa:/cookbooks/nginx/attributes/default.rb diff --git a/cookbooks/nginx/attributes/default.rb b/cookbooks/nginx/attributes/default.rb index 44fb5bc10..e37b42999 100644 --- a/cookbooks/nginx/attributes/default.rb +++ b/cookbooks/nginx/attributes/default.rb @@ -3,12 +3,14 @@ default[:nginx][:access_log] = "/var/log/nginx/access.log" # Tuning for nginx fastcgi cache zone default[:nginx][:cache][:fastcgi][:enable] = false -default[:nginx][:cache][:fastcgi][:keys_zone] = "fastcgi_cache_zone:32M" +default[:nginx][:cache][:fastcgi][:directory] = "/var/cache/nginx/fastcgi-cache" +default[:nginx][:cache][:fastcgi][:keys_zone] = "fastcgi_cache_zone:48M" default[:nginx][:cache][:fastcgi][:inactive] = "45d" -default[:nginx][:cache][:fastcgi][:max_size] = "2048M" +default[:nginx][:cache][:fastcgi][:max_size] = "8192M" # Tuning for nginx proxy cache zone default[:nginx][:cache][:proxy][:enable] = false -default[:nginx][:cache][:proxy][:keys_zone] = "proxy_cache_zone:32M" +default[:nginx][:cache][:proxy][:directory] = "/var/cache/nginx/proxy-cache" +default[:nginx][:cache][:proxy][:keys_zone] = "proxy_cache_zone:128M" default[:nginx][:cache][:proxy][:inactive] = "45d" -default[:nginx][:cache][:proxy][:max_size] = "2048M" +default[:nginx][:cache][:proxy][:max_size] = "16384M"