]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/nginx/attributes/default.rb
nginx: allow custom cache folder path, apply on longma
[chef.git] / cookbooks / nginx / attributes / default.rb
index 4e22759bf3b94bf2110d7915416c620a2cf68c24..c6e77de0ad4d89a102e2b94eb9807112fdb12948 100644 (file)
@@ -1,11 +1,16 @@
+# Tuning for access logging
+default[:nginx][:access_log] = "/var/log/nginx/access.log"
+
 # 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"
+default[:nginx][:cache][:fastcgi][:directory] = "/var/cache/nginx/fastcgi-cache"
+default[:nginx][:cache][:fastcgi][:keys_zone] = "fastcgi_cache_zone:48M"
+default[:nginx][:cache][:fastcgi][:inactive] = "45d"
+default[:nginx][:cache][:fastcgi][:max_size] = "8192M"
 
 # 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"
+default[:nginx][:cache][:proxy][:directory] = "/var/cache/nginx/proxy-cache"
+default[:nginx][:cache][:proxy][:keys_zone] = "proxy_cache_zone:48M"
+default[:nginx][:cache][:proxy][:inactive] = "45d"
+default[:nginx][:cache][:proxy][:max_size] = "8192M"