X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/981b586040b3fe307a4855e58e846da75555aa05..81d8eb8d36b74b4d979784f9a984e69ee5e7495c:/cookbooks/tilecache/recipes/default.rb diff --git a/cookbooks/tilecache/recipes/default.rb b/cookbooks/tilecache/recipes/default.rb index d1773b506..5c4907b69 100644 --- a/cookbooks/tilecache/recipes/default.rb +++ b/cookbooks/tilecache/recipes/default.rb @@ -77,6 +77,8 @@ squid_fragment "tilecache" do variables :caches => tilecaches, :renders => tilerenders end +package "rsync" + template "/etc/logrotate.d/squid" do source "logrotate.squid.erb" owner "root" @@ -113,14 +115,14 @@ ssl_certificate "tile.openstreetmap.org" do domains ["tile.openstreetmap.org", "a.tile.openstreetmap.org", "b.tile.openstreetmap.org", - "c.tile.openstreetmap.org"] + "c.tile.openstreetmap.org", + "tile.osm.org", + "a.tile.osm.org", + "b.tile.osm.org", + "c.tile.osm.org"] notifies :restart, "service[nginx]" end -nginx_site "tile-ssl" do - action :delete -end - nginx_site "tile" do template "nginx_tile.conf.erb" variables :caches => tilecaches @@ -140,7 +142,3 @@ tilerenders.each do |render| conf_variables :host => render[:fqdn] end end - -Dir.glob("/var/log/nginx/access.log*") do |log| - File.unlink(log) -end