]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/rails.rb
4095be1bc06e2bba9710b26deb582825377b3f32
[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 ssl_certificate "www.openstreetmap.org" do
32   domains ["www.openstreetmap.org", "www.osm.org",
33            "api.openstreetmap.org", "api.osm.org",
34            "openstreetmap.org", "osm.org"]
35   fallback_certificate "openstreetmap"
36   notifies :reload, "service[apache2]"
37 end
38
39 nodejs_package "svgo"
40
41 template "/etc/cron.hourly/passenger" do
42   cookbook "web"
43   source "passenger.cron.erb"
44   owner "root"
45   group "root"
46   mode 0o755
47 end
48
49 rails_directory = "#{node[:web][:base_directory]}/rails"
50
51 piwik_configuration = data_bag_item("web", "piwik").to_hash.reject do |k, _|
52   %w(chef_type data_bag id).include?(k)
53 end
54
55 rails_port "www.openstreetmap.org" do
56   ruby node[:passenger][:ruby_version]
57   directory rails_directory
58   user "rails"
59   group "rails"
60   repository "git://git.openstreetmap.org/rails.git"
61   revision "live"
62   database_host node[:web][:database_host]
63   database_name "openstreetmap"
64   database_username "rails"
65   database_password db_passwords["rails"]
66   email_from "OpenStreetMap <web@noreply.openstreetmap.org>"
67   status node[:web][:status]
68   messages_domain "messages.openstreetmap.org"
69   gpx_dir "/store/rails/gpx"
70   attachments_dir "/store/rails/attachments"
71   log_path "#{node[:web][:log_directory]}/rails.log"
72   logstash_path "#{node[:web][:log_directory]}/rails-logstash.log"
73   memcache_servers node[:web][:memcached_servers]
74   potlatch2_key web_passwords["potlatch2_key"]
75   id_key web_passwords["id_key"]
76   oauth_key web_passwords["oauth_key"]
77   piwik_configuration piwik_configuration
78   google_auth_id "651529786092-6c5ahcu0tpp95emiec8uibg11asmk34t.apps.googleusercontent.com"
79   google_auth_secret web_passwords["google_auth_secret"]
80   google_openid_realm "https://www.openstreetmap.org"
81   facebook_auth_id "427915424036881"
82   facebook_auth_secret web_passwords["facebook_auth_secret"]
83   windowslive_auth_id "0000000040153C51"
84   windowslive_auth_secret web_passwords["windowslive_auth_secret"]
85   github_auth_id "acf7da34edee99e35499"
86   github_auth_secret web_passwords["github_auth_secret"]
87   wikipedia_auth_id "e4fe0c2c5855d23ed7e1f1c0fa1f1c58"
88   wikipedia_auth_secret web_passwords["wikipedia_auth_secret"]
89   mapzen_valhalla_key web_passwords["mapzen_valhalla_key"]
90   thunderforest_key web_passwords["thunderforest_key"]
91   totp_key web_passwords["totp_key"]
92 end
93
94 package "libjson-xs-perl"
95
96 template "/usr/local/bin/cleanup-rails-assets" do
97   source "cleanup-assets.erb"
98   owner "root"
99   group "root"
100   mode 0o755
101 end
102
103 gem_package "apachelogregex"
104 gem_package "file-tail"
105
106 template "/usr/local/bin/api-statistics" do
107   source "api-statistics.erb"
108   owner "root"
109   group "root"
110   mode 0o755
111 end
112
113 systemd_service "api-statistics" do
114   description "OpenStreetMap API Statistics Daemon"
115   user "rails"
116   group "adm"
117   exec_start "/usr/local/bin/api-statistics"
118   private_tmp true
119   private_devices true
120   private_network true
121   protect_system "full"
122   protect_home true
123   restart "on-failure"
124 end
125
126 service "api-statistics" do
127   action [:enable, :start]
128   supports :restart => true
129   subscribes :restart, "template[/usr/local/bin/api-statistics]"
130   subscribes :restart, "systemd_service[api-statistics]"
131 end
132
133 gem_package "hpricot"
134
135 munin_plugin "api_calls_status"
136 munin_plugin "api_calls_num"
137
138 munin_plugin "api_calls_#{node[:hostname]}" do
139   target "api_calls_"
140 end
141
142 munin_plugin "api_waits_#{node[:hostname]}" do
143   target "api_waits_"
144 end