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 # https://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.
23 include_recipe "squid"
24 include_recipe "nginx"
25 include_recipe "fail2ban"
36 # oathtool for QoS token
39 tilecaches = search(:node, "roles:tilecache").sort_by { |n| n[:hostname] }
40 tilerenders = search(:node, "roles:tile").sort_by { |n| n[:hostname] }
42 web_passwords = data_bag_item("web", "passwords")
44 tilecaches.each do |cache|
45 cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address|
46 firewall_rule "accept-squid" do
49 source "net:#{address}"
56 firewall_rule "accept-squid-icp" do
59 source "net:#{address}"
66 firewall_rule "accept-squid-icp-reply" do
76 firewall_rule "accept-squid-htcp" do
79 source "net:#{address}"
86 firewall_rule "accept-squid-htcp-reply" do
98 squid_fragment "tilecache" do
99 template "squid.conf.erb"
100 variables :caches => tilecaches, :renders => tilerenders
105 template "/etc/logrotate.d/squid" do
106 source "logrotate.squid.erb"
112 nginx_site "default" do
116 template "/usr/local/bin/nginx_generate_tilecache_qos_map" do
117 source "nginx_generate_tilecache_qos_map.erb"
121 variables :totp_key => web_passwords["totp_key"]
124 template "/etc/cron.d/tilecache" do
131 execute "execute_nginx_generate_tilecache_qos_map" do
132 command "/usr/local/bin/nginx_generate_tilecache_qos_map"
133 creates "/etc/nginx/conf.d/tile_qos_rates.map"
137 ssl_certificate "tile.openstreetmap.org" do
138 domains ["tile.openstreetmap.org",
139 "a.tile.openstreetmap.org",
140 "b.tile.openstreetmap.org",
141 "c.tile.openstreetmap.org",
146 notifies :restart, "service[nginx]"
150 template "nginx_tile.conf.erb"
151 variables :caches => tilecaches
154 template "/etc/logrotate.d/nginx" do
155 source "logrotate.nginx.erb"
161 fail2ban_jail "squid" do
165 tilerenders.each do |render|
166 munin_plugin "ping_#{render[:fqdn]}" do
168 conf "munin.ping.erb"
169 conf_variables :host => render[:fqdn]