X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/3a4d52bd4c0f8e6ae7679145846b7bc7845d8ace..f8dbb973859a4686501746d22cf8a0617352b5e3:/cookbooks/nginx/recipes/default.rb diff --git a/cookbooks/nginx/recipes/default.rb b/cookbooks/nginx/recipes/default.rb index b92d15749..bd104f676 100644 --- a/cookbooks/nginx/recipes/default.rb +++ b/cookbooks/nginx/recipes/default.rb @@ -28,8 +28,22 @@ template "/etc/nginx/nginx.conf" do mode 0644 end +directory "/var/cache/nginx/fastcgi-cache" do + owner "www-data" + group "root" + mode 0755 + only_if { node[:nginx][:cache][:fastcgi][:enable] } +end + +directory "/var/cache/nginx/proxy-cache" do + owner "www-data" + group "root" + mode 0755 + only_if { node[:nginx][:cache][:proxy][:enable] } +end + service "nginx" do - action [ :enable ] + action [:enable] supports :status => true, :restart => true, :reload => true subscribes :restart, "template[/etc/nginx/nginx.conf]" end