X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/c4abdded449ba9f2905f78fb9d2c017a49f99b17..7308cad7a3294f7cd5fbd6db4d438b9358f3fea6:/cookbooks/nginx/attributes/default.rb diff --git a/cookbooks/nginx/attributes/default.rb b/cookbooks/nginx/attributes/default.rb index 6e7d56d9b..4e22759bf 100644 --- a/cookbooks/nginx/attributes/default.rb +++ b/cookbooks/nginx/attributes/default.rb @@ -1,2 +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] = "30d" +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] = "30d" +default[:nginx][:cache][:proxy][:max_size] = "2048m"