]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/rails.rb
7d39696dc9799be531baa41b6d9bc4d26c4bed00
[chef.git] / cookbooks / web / recipes / rails.rb
1 #
2 # Cookbook:: 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 #     https://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 "apache"
21 include_recipe "apt"
22 include_recipe "git"
23 include_recipe "geoipupdate"
24 include_recipe "munin"
25 include_recipe "nodejs"
26 include_recipe "passenger"
27 include_recipe "ruby"
28 include_recipe "tools"
29 include_recipe "web::base"
30
31 web_passwords = data_bag_item("web", "passwords")
32 db_passwords = data_bag_item("db", "passwords")
33
34 ssl_certificate "www.openstreetmap.org" do
35   domains ["www.openstreetmap.org", "www.osm.org",
36            "api.openstreetmap.org", "api.osm.org",
37            "maps.openstreetmap.org", "maps.osm.org",
38            "mapz.openstreetmap.org", "mapz.osm.org",
39            "openstreetmap.org", "osm.org"]
40   notifies :reload, "service[apache2]"
41 end
42
43 nodejs_package "svgo"
44
45 rails_directory = "#{node[:web][:base_directory]}/rails"
46
47 matomo = data_bag_item("web", "matomo")
48
49 storage = {
50   "avatars" => {
51     "service" => "S3",
52     "access_key_id" => "AKIASQUXHPE7AMJQRFOS",
53     "secret_access_key" => web_passwords["aws_key"],
54     "region" => "eu-west-1",
55     "bucket" => "openstreetmap-user-avatars",
56     "use_dualstack_endpoint" => true,
57     "upload" => {
58       "acl" => "public-read",
59       "cache_control" => "public, max-age=31536000, immutable"
60     }
61   },
62   "gps_traces" => {
63     "service" => "S3",
64     "access_key_id" => "AKIASQUXHPE7AMJQRFOS",
65     "secret_access_key" => web_passwords["aws_key"],
66     "region" => "eu-west-1",
67     "bucket" => "openstreetmap-gps-traces",
68     "use_dualstack_endpoint" => true,
69     "upload" => {
70       "acl" => "public-read",
71       "cache_control" => "public, max-age=31536000, immutable"
72     }
73   },
74   "gps_images" => {
75     "service" => "S3",
76     "access_key_id" => "AKIASQUXHPE7AMJQRFOS",
77     "secret_access_key" => web_passwords["aws_key"],
78     "region" => "eu-west-1",
79     "bucket" => "openstreetmap-gps-images",
80     "use_dualstack_endpoint" => true,
81     "upload" => {
82       "acl" => "public-read",
83       "cache_control" => "public, max-age=31536000, immutable"
84     }
85   }
86 }
87
88 db_host = if node[:web][:status] == "database_readonly"
89             node[:web][:readonly_database_host]
90           else
91             node[:web][:database_host]
92           end
93
94 rails_port "www.openstreetmap.org" do
95   directory rails_directory
96   user "rails"
97   group "rails"
98   repository "https://git.openstreetmap.org/public/rails.git"
99   revision "live"
100   database_host db_host
101   database_name "openstreetmap"
102   database_username "rails"
103   database_password db_passwords["rails"]
104   email_from "OpenStreetMap <web@noreply.openstreetmap.org>"
105   status node[:web][:status]
106   messages_domain "messages.openstreetmap.org"
107   log_path "#{node[:web][:log_directory]}/rails.log"
108   logstash_path "#{node[:web][:log_directory]}/rails-logstash.log"
109   memcache_servers node[:web][:memcached_servers]
110   potlatch2_key web_passwords["potlatch2_key"]
111   id_key web_passwords["id_key"]
112   id_application web_passwords["id_application"]
113   oauth_key web_passwords["oauth_key"]
114   oauth_application web_passwords["oauth_application"]
115   matomo_configuration "location" => matomo[:location],
116                        "site" => matomo[:site],
117                        "visitor_cookie_timeout" => matomo[:visitor_cookie_timeout],
118                        "referral_cookie_timeout" => matomo[:referral_cookie_timeout],
119                        "session_cookie_timeout" => matomo[:session_cookie_timeout],
120                        "goals" => matomo[:goals].to_hash
121   google_auth_id "651529786092-6c5ahcu0tpp95emiec8uibg11asmk34t.apps.googleusercontent.com"
122   google_auth_secret web_passwords["google_auth_secret"]
123   google_openid_realm "https://www.openstreetmap.org"
124   facebook_auth_id "427915424036881"
125   facebook_auth_secret web_passwords["facebook_auth_secret"]
126   microsoft_auth_id "e34f14f1-f790-40f3-9fa4-3c5f1a027c38"
127   microsoft_auth_secret web_passwords["microsoft_auth_secret"]
128   github_auth_id "acf7da34edee99e35499"
129   github_auth_secret web_passwords["github_auth_secret"]
130   wikipedia_auth_id "e4fe0c2c5855d23ed7e1f1c0fa1f1c58"
131   wikipedia_auth_secret web_passwords["wikipedia_auth_secret"]
132   thunderforest_key web_passwords["thunderforest_key"]
133   tracestrack_key web_passwords["tracestrack_key"]
134   totp_key web_passwords["totp_key"]
135   csp_enforce true
136   trace_use_job_queue true
137   diary_feed_delay 12
138   storage_configuration storage
139   avatar_storage "avatars"
140   trace_file_storage "gps_traces"
141   trace_image_storage "gps_images"
142   trace_icon_storage "gps_images"
143   avatar_storage_url "https://openstreetmap-user-avatars.s3.dualstack.eu-west-1.amazonaws.com"
144   trace_image_storage_url "https://openstreetmap-gps-images.s3.dualstack.eu-west-1.amazonaws.com"
145   overpass_url "https://query.openstreetmap.org/query-features"
146   overpass_credentials true
147   signup_ip_per_day 24
148   signup_ip_max_burst 48
149   signup_email_per_day 1
150   signup_email_max_burst 2
151   doorkeeper_signing_key web_passwords["openid_connect_key"].join("\n")
152   user_account_deletion_delay 7 * 24
153   # Requests to modify the imagery blacklist should come from the DWG only
154   imagery_blacklist [
155     # Current Google imagery URLs have google or googleapis in the domain
156     ".*\\.google(apis)?\\..*/.*",
157     # Blacklist VWorld
158     "http://xdworld\\.vworld\\.kr:8080/.*",
159     # Blacklist here
160     ".*\\.here\\.com[/:].*",
161     # Blacklist Mapy.cz
162     ".*\\.mapy\\.cz.*",
163     # Blacklist Yandex
164     ".*\\.api-maps\\.yandex\\.ru/.*",
165     ".*\\.maps\\.yandex\\.net/.*"
166   ]
167 end
168
169 systemd_service "rails-jobs@" do
170   description "Rails job queue runner"
171   type "simple"
172   environment "RAILS_ENV" => "production",
173               "QUEUE" => "%I",
174               "SLEEP_DELAY" => "60",
175               "SECRET_KEY_BASE" => web_passwords["secret_key_base"]
176   user "rails"
177   working_directory rails_directory
178   exec_start "#{node[:ruby][:bundle]} exec rails jobs:work"
179   restart "on-failure"
180   nice 10
181   sandbox :enable_network => true
182   memory_deny_write_execute false
183   read_write_paths "/var/log/web"
184 end
185
186 package "libjson-xs-perl"
187
188 template "/usr/local/bin/cleanup-rails-assets" do
189   source "cleanup-assets.erb"
190   owner "root"
191   group "root"
192   mode "755"
193 end
194
195 gem_package "apachelogregex" do
196   gem_binary node[:ruby][:gem]
197 end
198
199 gem_package "file-tail" do
200   gem_binary node[:ruby][:gem]
201 end
202
203 template "/usr/local/bin/api-statistics" do
204   source "api-statistics.erb"
205   owner "root"
206   group "root"
207   mode "755"
208 end
209
210 systemd_service "api-statistics" do
211   description "OpenStreetMap API Statistics Daemon"
212   user "rails"
213   group "adm"
214   exec_start "/usr/local/bin/api-statistics"
215   nice 10
216   sandbox true
217   read_write_paths [
218     "/srv/www.openstreetmap.org/rails/tmp",
219     "/var/lib/prometheus/node-exporter"
220   ]
221   restart "on-failure"
222 end
223
224 service "api-statistics" do
225   action [:enable, :start]
226   supports :restart => true
227   subscribes :restart, "template[/usr/local/bin/api-statistics]"
228   subscribes :restart, "systemd_service[api-statistics]"
229 end
230
231 gem_package "hpricot" do
232   gem_binary node[:ruby][:gem]
233 end
234
235 munin_plugin "api_calls_status"
236 munin_plugin "api_calls_num"
237
238 munin_plugin "api_calls_#{node[:hostname]}" do
239   target "api_calls_"
240 end
241
242 munin_plugin "api_waits_#{node[:hostname]}" do
243   target "api_waits_"
244 end