X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/ff044920428608b2c04507ad52d6ab52c9d6555f..0a236a864373304ba6d6494e02113aa54f8e24cb:/cookbooks/nginx/attributes/default.rb?ds=sidebyside diff --git a/cookbooks/nginx/attributes/default.rb b/cookbooks/nginx/attributes/default.rb index 7e054bd64..fc2573314 100644 --- a/cookbooks/nginx/attributes/default.rb +++ b/cookbooks/nginx/attributes/default.rb @@ -1 +1,11 @@ -#default[:nginx][:mpm] = "worker" +# 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"