]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tilecache/recipes/default.rb
Force a restart of tile caches
[chef.git] / cookbooks / tilecache / recipes / default.rb
index 994c6104aaf4cea4885362563d9108ca42ef371b..9aad8992789a2257506b380892880817f52ce8e3 100644 (file)
@@ -8,7 +8,7 @@
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at
 #
-#     http://www.apache.org/licenses/LICENSE-2.0
+#     https://www.apache.org/licenses/LICENSE-2.0
 #
 # Unless required by applicable law or agreed to in writing, software
 # distributed under the License is distributed on an "AS IS" BASIS,
@@ -118,7 +118,11 @@ ssl_certificate "tile.openstreetmap.org" do
 end
 
 nginx_site "tile-ssl" do
-  template "nginx_tile_ssl.conf.erb"
+  action :delete
+end
+
+nginx_site "tile" do
+  template "nginx_tile.conf.erb"
   variables :caches => tilecaches
 end
 
@@ -140,3 +144,9 @@ end
 Dir.glob("/var/log/nginx/access.log*") do |log|
   File.unlink(log)
 end
+
+log "restart" do
+  message "Restarting caching"
+  notifies :restart, "service[squid]"
+  notifies :restart, "service[nginx]"
+end