X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/aebc9980eafb3e523e36023022186a5da64ca5ac..69aad675cd589bf027f1cee3062e9a22807403eb:/cookbooks/nginx/attributes/default.rb?ds=sidebyside diff --git a/cookbooks/nginx/attributes/default.rb b/cookbooks/nginx/attributes/default.rb index 4e22759bf..30eb12bcc 100644 --- a/cookbooks/nginx/attributes/default.rb +++ b/cookbooks/nginx/attributes/default.rb @@ -1,11 +1,14 @@ +# Tuning for access logging +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][:inactive] = "30d" -default[:nginx][:cache][:fastcgi][:max_size] = "2048m" +default[:nginx][:cache][:fastcgi][:keys_zone] = "fastcgi_cache_zone:48M" +default[:nginx][:cache][:fastcgi][:inactive] = "45d" +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][:inactive] = "30d" -default[:nginx][:cache][:proxy][:max_size] = "2048m" +default[:nginx][:cache][:proxy][:keys_zone] = "proxy_cache_zone:48M" +default[:nginx][:cache][:proxy][:inactive] = "45d" +default[:nginx][:cache][:proxy][:max_size] = "8192M"