]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/nginx/attributes/default.rb
Issue letsencrypt certificates for wordpress sites
[chef.git] / cookbooks / nginx / attributes / default.rb
index 6e7d56d9b352e1d485fd04c5b2f321c8a0d1c132..fc2573314efca3721091c0897fbc67b7ad8f19e4 100644 (file)
@@ -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] = "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"