X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/1fb771a75fb2aa2932b5afce2b424e3f86791bc2..864d5dd378e3abaceec0119861696aa99f5d5628:/cookbooks/nginx/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/nginx/recipes/default.rb b/cookbooks/nginx/recipes/default.rb index a55dc14be..cfd79376d 100644 --- a/cookbooks/nginx/recipes/default.rb +++ b/cookbooks/nginx/recipes/default.rb @@ -19,6 +19,7 @@ include_recipe "apt" include_recipe "munin" +include_recipe "ssl" package "nginx" @@ -59,3 +60,17 @@ package "libwww-perl" munin_plugin "nginx_request" munin_plugin "nginx_status" + +template "/usr/local/bin/nginx-old-cache-cleanup" do + source "nginx-old-cache-cleanup.erb" + owner "root" + group "root" + mode 0o755 +end + +template "/etc/cron.d/nginx-old-cache-cleanup" do + source "nginx-old-cache-cleanup.cron.erb" + owner "root" + group "root" + mode 0o644 +end