X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/3a4d52bd4c0f8e6ae7679145846b7bc7845d8ace..76a92a578930347d2e7ef6a99a9ed7731b62e8b0:/cookbooks/nginx/attributes/default.rb diff --git a/cookbooks/nginx/attributes/default.rb b/cookbooks/nginx/attributes/default.rb index f28efd253..44fb5bc10 100644 --- a/cookbooks/nginx/attributes/default.rb +++ b/cookbooks/nginx/attributes/default.rb @@ -1 +1,14 @@ -# default[:nginx][:mpm] = "worker" +# 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] = "45d" +default[:nginx][:cache][:fastcgi][:max_size] = "2048M" + +# 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] = "45d" +default[:nginx][:cache][:proxy][:max_size] = "2048M"