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