]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/nginx/attributes/default.rb
Add nginx caching support + enable for imagery
[chef.git] / cookbooks / nginx / attributes / default.rb
index f28efd253f9934d544bb9721756fad5002b7745e..4e22759bf3b94bf2110d7915416c620a2cf68c24 100644 (file)
@@ -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] = "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"