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.
 
  20 include_recipe "tools"
 
  21 include_recipe "web::base"
 
  23 include_recipe "apache"
 
  24 include_recipe "passenger"
 
  26 include_recipe "nodejs"
 
  28 web_passwords = data_bag_item("web", "passwords")
 
  29 db_passwords = data_bag_item("db", "passwords")
 
  31 ssl_certificate "www.openstreetmap.org" do
 
  32   domains ["www.openstreetmap.org", "www.osm.org",
 
  33            "api.openstreetmap.org", "api.osm.org",
 
  34            "maps.openstreetmap.org", "maps.osm.org",
 
  35            "mapz.openstreetmap.org", "mapz.osm.org",
 
  36            "openstreetmap.org", "osm.org"]
 
  37   notifies :reload, "service[apache2]"
 
  42 template "/etc/cron.hourly/passenger" do
 
  44   source "passenger.cron.erb"
 
  50 rails_directory = "#{node[:web][:base_directory]}/rails"
 
  52 piwik = data_bag_item("web", "piwik")
 
  54 rails_port "www.openstreetmap.org" do
 
  55   ruby node[:passenger][:ruby_version]
 
  56   directory rails_directory
 
  59   repository "https://git.openstreetmap.org/public/rails.git"
 
  61   database_host node[:web][:database_host]
 
  62   database_name "openstreetmap"
 
  63   database_username "rails"
 
  64   database_password db_passwords["rails"]
 
  65   email_from "OpenStreetMap <web@noreply.openstreetmap.org>"
 
  66   status node[:web][:status]
 
  67   messages_domain "messages.openstreetmap.org"
 
  68   gpx_dir "/store/rails/gpx"
 
  69   attachments_dir "/store/rails/attachments"
 
  70   log_path "#{node[:web][:log_directory]}/rails.log"
 
  71   logstash_path "#{node[:web][:log_directory]}/rails-logstash.log"
 
  72   memcache_servers node[:web][:memcached_servers]
 
  73   potlatch2_key web_passwords["potlatch2_key"]
 
  74   id_key web_passwords["id_key"]
 
  75   oauth_key web_passwords["oauth_key"]
 
  76   piwik_configuration "location" => piwik[:location],
 
  77                       "site" => piwik[:site],
 
  78                       "goals" => piwik[:goals].to_hash
 
  79   google_auth_id "651529786092-6c5ahcu0tpp95emiec8uibg11asmk34t.apps.googleusercontent.com"
 
  80   google_auth_secret web_passwords["google_auth_secret"]
 
  81   google_openid_realm "https://www.openstreetmap.org"
 
  82   facebook_auth_id "427915424036881"
 
  83   facebook_auth_secret web_passwords["facebook_auth_secret"]
 
  84   windowslive_auth_id "0000000040153C51"
 
  85   windowslive_auth_secret web_passwords["windowslive_auth_secret"]
 
  86   github_auth_id "acf7da34edee99e35499"
 
  87   github_auth_secret web_passwords["github_auth_secret"]
 
  88   wikipedia_auth_id "e4fe0c2c5855d23ed7e1f1c0fa1f1c58"
 
  89   wikipedia_auth_secret web_passwords["wikipedia_auth_secret"]
 
  90   mapzen_valhalla_key web_passwords["mapzen_valhalla_key"]
 
  91   thunderforest_key web_passwords["thunderforest_key"]
 
  92   totp_key web_passwords["totp_key"]
 
  96 package "libjson-xs-perl"
 
  98 template "/usr/local/bin/cleanup-rails-assets" do
 
  99   source "cleanup-assets.erb"
 
 105 gem_package "apachelogregex"
 
 106 gem_package "file-tail"
 
 108 template "/usr/local/bin/api-statistics" do
 
 109   source "api-statistics.erb"
 
 115 systemd_service "api-statistics" do
 
 116   description "OpenStreetMap API Statistics Daemon"
 
 119   exec_start "/usr/local/bin/api-statistics"
 
 123   protect_system "full"
 
 125   no_new_privileges true
 
 129 service "api-statistics" do
 
 130   action [:enable, :start]
 
 131   supports :restart => true
 
 132   subscribes :restart, "template[/usr/local/bin/api-statistics]"
 
 133   subscribes :restart, "systemd_service[api-statistics]"
 
 136 gem_package "hpricot"
 
 138 munin_plugin "api_calls_status"
 
 139 munin_plugin "api_calls_num"
 
 141 munin_plugin "api_calls_#{node[:hostname]}" do
 
 145 munin_plugin "api_waits_#{node[:hostname]}" do