]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/rails.rb
Switch to the Mapbox OSM instance
[chef.git] / cookbooks / web / recipes / rails.rb
1 #
2 # Cookbook Name:: web
3 # Recipe:: rails
4 #
5 # Copyright 2011, OpenStreetMap Foundation
6 #
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
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 include_recipe "tools"
21 include_recipe "web::base"
22
23 include_recipe "apache"
24 include_recipe "passenger"
25 include_recipe "git"
26 include_recipe "nodejs"
27
28 web_passwords = data_bag_item("web", "passwords")
29 db_passwords = data_bag_item("db", "passwords")
30
31 nodejs_package "svgo"
32
33 template "/etc/cron.hourly/passenger" do
34   cookbook "web"
35   source "passenger.cron.erb"
36   owner "root"
37   group "root"
38   mode 0755
39 end
40
41 rails_directory = "#{node[:web][:base_directory]}/rails"
42
43 piwik_configuration = data_bag_item("web", "piwik").to_hash.reject do |k, _|
44   %w(chef_type data_bag id).include?(k)
45 end
46
47 rails_port "www.openstreetmap.org" do
48   ruby node[:passenger][:ruby_version]
49   directory rails_directory
50   user "rails"
51   group "rails"
52   repository "git://git.openstreetmap.org/rails.git"
53   revision "live"
54   database_host node[:web][:database_host]
55   database_name "openstreetmap"
56   database_username "rails"
57   database_password db_passwords["rails"]
58   email_from "OpenStreetMap <web@noreply.openstreetmap.org>"
59   status node[:web][:status]
60   messages_domain "messages.openstreetmap.org"
61   quova_username "ws360602"
62   quova_password web_passwords["quova"]
63   gpx_dir "/store/rails/gpx"
64   attachments_dir "/store/rails/attachments"
65   log_path "#{node[:web][:log_directory]}/rails.log"
66   logstash_path "#{node[:web][:log_directory]}/rails-logstash.log"
67   memcache_servers %w(rails1 rails2 rails3)
68   potlatch2_key web_passwords["potlatch2_key"]
69   id_key web_passwords["id_key"]
70   oauth_key web_passwords["oauth_key"]
71   piwik_configuration piwik_configuration
72   google_auth_id "651529786092-6c5ahcu0tpp95emiec8uibg11asmk34t.apps.googleusercontent.com"
73   google_auth_secret web_passwords["google_auth_secret"]
74   google_openid_realm "https://www.openstreetmap.org"
75   facebook_auth_id "427915424036881"
76   facebook_auth_secret web_passwords["facebook_auth_secret"]
77   windowslive_auth_id "0000000040153C51"
78   windowslive_auth_secret web_passwords["windowslive_auth_secret"]
79   mapzen_valhalla_key web_passwords["mapzen_valhalla_key"]
80   osrm_url "//api-osrm-routed-production.tilestream.net/viaroute"
81 end
82
83 package "libjson-xs-perl"
84
85 template "/usr/local/bin/cleanup-rails-assets" do
86   source "cleanup-assets.erb"
87   owner "root"
88   group "root"
89   mode 0755
90 end
91
92 gem_package "apachelogregex"
93 gem_package "file-tail"
94
95 template "/usr/local/bin/api-statistics" do
96   source "api-statistics.erb"
97   owner "root"
98   group "root"
99   mode 0755
100 end
101
102 template "/etc/init.d/api-statistics" do
103   source "api-statistics.init.erb"
104   owner "root"
105   group "root"
106   mode 0755
107 end
108
109 service "api-statistics" do
110   action [:enable, :start]
111   supports :restart => true
112   subscribes :restart, "template[/usr/local/bin/api-statistics]"
113   subscribes :restart, "template[/etc/init.d/api-statistics]"
114 end
115
116 munin_plugin "api_calls_status"
117 munin_plugin "api_calls_num"
118
119 munin_plugin "api_calls_#{node[:hostname]}" do
120   target "api_calls_"
121 end
122
123 munin_plugin "api_waits_#{node[:hostname]}" do
124   target "api_waits_"
125 end