2 # Cookbook Name:: tilecache
5 # Copyright 2011, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 node.default[:ssl][:certificates] = node[:ssl][:certificates] | [ "tile.openstreetmap" ]
23 include_recipe "squid"
24 include_recipe "nginx"
28 tilecaches = search(:node, "roles:tilecache").sort_by { |n| n[:hostname] }
29 tilerenders = search(:node, "roles:tile").sort_by { |n| n[:hostname] }
31 tilecaches.each do |cache|
32 cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address|
33 firewall_rule "accept-squid" do
36 source "net:#{address}"
42 firewall_rule "accept-squid-icp" do
45 source "net:#{address}"
51 firewall_rule "accept-squid-icp-reply" do
63 squid_fragment "tilecache" do
64 template "squid.conf.erb"
65 variables :caches => tilecaches, :renders => tilerenders
68 template "/etc/logrotate.d/squid" do
69 source "logrotate.squid.erb"
75 nginx_site "default" do
79 nginx_site "tile-ssl" do
80 template "nginx_tile_ssl.conf.erb"
83 tilerenders.each do |render|
84 munin_plugin "ping_#{render[:fqdn]}" do
87 conf_variables :host => render[:fqdn]