X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/3299fcbfdf657aa8ce1fdf4f1c63dbe4433d81a7..480d54a8957ad07025a37ecb63181be2a5e6d129:/cookbooks/nginx/recipes/default.rb diff --git a/cookbooks/nginx/recipes/default.rb b/cookbooks/nginx/recipes/default.rb index ae6fb2362..480937407 100644 --- a/cookbooks/nginx/recipes/default.rb +++ b/cookbooks/nginx/recipes/default.rb @@ -31,24 +31,26 @@ template "/etc/nginx/nginx.conf" do variables :resolvers => resolvers end -directory "/var/cache/nginx/fastcgi-cache" do +directory node[:nginx][:cache][:fastcgi][:directory] do owner "www-data" group "root" mode 0o755 + recursive true only_if { node[:nginx][:cache][:fastcgi][:enable] } end -directory "/var/cache/nginx/proxy-cache" do +directory node[:nginx][:cache][:proxy][:directory] do owner "www-data" group "root" mode 0o755 + recursive true only_if { node[:nginx][:cache][:proxy][:enable] } end service "nginx" do 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]" + subscribes :restart, "template[/etc/nginx/nginx.conf]", :immediately end munin_plugin_conf "nginx" do