X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/9f13c244211f5683f232f7cc32fac53be8d0b3ec..aebc9980eafb3e523e36023022186a5da64ca5ac:/cookbooks/nginx/recipes/default.rb diff --git a/cookbooks/nginx/recipes/default.rb b/cookbooks/nginx/recipes/default.rb index 2c8b00a46..a5d06e1c0 100644 --- a/cookbooks/nginx/recipes/default.rb +++ b/cookbooks/nginx/recipes/default.rb @@ -28,6 +28,22 @@ template "/etc/nginx/nginx.conf" do mode 0644 end +if node['nginx']['cache']['fastcgi']['enable'] + directory "/var/lib/nginx/fastcgi-cache" do + owner "nginx" + group "nginx" + mode 0755 + end +end + +if node['nginx']['cache']['proxy']['enable'] + directory "/var/lib/nginx/proxy-cache" do + owner "nginx" + group "nginx" + mode 0755 + end +end + service "nginx" do action [:enable] supports :status => true, :restart => true, :reload => true