X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ff044920428608b2c04507ad52d6ab52c9d6555f..1952990836d6687ed4030bb95ca5f9e535eaf61f:/cookbooks/nginx/recipes/default.rb diff --git a/cookbooks/nginx/recipes/default.rb b/cookbooks/nginx/recipes/default.rb index 540e97c24..0c97546bd 100644 --- a/cookbooks/nginx/recipes/default.rb +++ b/cookbooks/nginx/recipes/default.rb @@ -19,17 +19,31 @@ package "nginx" -#admins = data_bag_item("nginx", "admins") +# admins = data_bag_item("nginx", "admins") template "/etc/nginx/nginx.conf" do source "nginx.conf.erb" owner "root" group "root" - mode 0644 + mode 0o644 +end + +directory "/var/cache/nginx/fastcgi-cache" do + owner "www-data" + group "root" + mode 0o755 + only_if { node[:nginx][:cache][:fastcgi][:enable] } +end + +directory "/var/cache/nginx/proxy-cache" do + owner "www-data" + group "root" + mode 0o755 + only_if { node[:nginx][:cache][:proxy][:enable] } end service "nginx" do - action [ :enable ] + action [:enable] # Do not start the service as config may be broken from failed chef run supports :status => true, :restart => true, :reload => true subscribes :restart, "template[/etc/nginx/nginx.conf]" end