]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/nginx/attributes/default.rb
Make nginx cookbook default to using the nginx upstream repository
[chef.git] / cookbooks / nginx / attributes / default.rb
index c6e77de0ad4d89a102e2b94eb9807112fdb12948..21d22045bc60841f1e453369a6ffff924d97456e 100644 (file)
@@ -11,6 +11,9 @@ default[:nginx][:cache][:fastcgi][:max_size] = "8192M"
 # Tuning for nginx proxy cache zone
 default[:nginx][:cache][:proxy][:enable] = false
 default[:nginx][:cache][:proxy][:directory] = "/var/cache/nginx/proxy-cache"
-default[:nginx][:cache][:proxy][:keys_zone] = "proxy_cache_zone:48M"
+default[:nginx][:cache][:proxy][:keys_zone] = "proxy_cache_zone:128M"
 default[:nginx][:cache][:proxy][:inactive] = "45d"
-default[:nginx][:cache][:proxy][:max_size] = "8192M"
+default[:nginx][:cache][:proxy][:max_size] = "16384M"
+
+# Enable nginx repository
+default[:apt][:sources] = node[:apt][:sources] | ["nginx"]