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}"
 
  55     firewall_rule "accept-squid-icp" do
 
  58       source "net:#{address}"
 
  64     firewall_rule "accept-squid-icp-reply" do
 
  76 squid_fragment "tilecache" do
 
  77   template "squid.conf.erb"
 
  78   variables :caches => tilecaches, :renders => tilerenders
 
  83 template "/etc/logrotate.d/squid" do
 
  84   source "logrotate.squid.erb"
 
  90 nginx_site "default" do
 
  94 template "/usr/local/bin/nginx_generate_tilecache_qos_map" do
 
  95   source "nginx_generate_tilecache_qos_map.erb"
 
  99   variables :totp_key => web_passwords["totp_key"]
 
 102 template "/etc/cron.d/tilecache" do
 
 109 execute "execute_nginx_generate_tilecache_qos_map" do
 
 110   command "/usr/local/bin/nginx_generate_tilecache_qos_map"
 
 111   creates "/etc/nginx/conf.d/tile_qos_rates.map"
 
 115 ssl_certificate "tile.openstreetmap.org" do
 
 116   domains ["tile.openstreetmap.org",
 
 117            "a.tile.openstreetmap.org",
 
 118            "b.tile.openstreetmap.org",
 
 119            "c.tile.openstreetmap.org",
 
 124   notifies :restart, "service[nginx]"
 
 128   template "nginx_tile.conf.erb"
 
 129   variables :caches => tilecaches
 
 132 template "/etc/logrotate.d/nginx" do
 
 133   source "logrotate.nginx.erb"
 
 139 fail2ban_jail "squid" do
 
 143 tilerenders.each do |render|
 
 144   munin_plugin "ping_#{render[:fqdn]}" do
 
 146     conf "munin.ping.erb"
 
 147     conf_variables :host => render[:fqdn]