]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/rails.rb
Fix configuration of S3 URLs for security policy
[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 "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",
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"]
39   notifies :reload, "service[apache2]"
40 end
41
42 nodejs_package "svgo"
43
44 template "/etc/cron.hourly/passenger" do
45   cookbook "web"
46   source "passenger.cron.erb"
47   owner "root"
48   group "root"
49   mode "755"
50 end
51
52 ruby_version = node[:passenger][:ruby_version]
53 rails_directory = "#{node[:web][:base_directory]}/rails"
54
55 piwik = data_bag_item("web", "piwik")
56
57 storage = {
58   "avatars" => {
59     "service" => "S3",
60     "access_key_id" => "AKIASQUXHPE7AMJQRFOS",
61     "secret_access_key" => web_passwords["aws_key"],
62     "region" => "eu-west-1",
63     "bucket" => "openstreetmap-user-avatars",
64     "use_dualstack_endpoint" => true,
65     "upload" => {
66       "acl" => "public-read",
67       "cache_control" => "public, max-age=31536000, immutable"
68     }
69   },
70   "gps_traces" => {
71     "service" => "S3",
72     "access_key_id" => "AKIASQUXHPE7AMJQRFOS",
73     "secret_access_key" => web_passwords["aws_key"],
74     "region" => "eu-west-1",
75     "bucket" => "openstreetmap-gps-traces",
76     "use_dualstack_endpoint" => true,
77     "upload" => {
78       "acl" => "public-read",
79       "cache_control" => "public, max-age=31536000, immutable"
80     }
81   },
82   "gps_images" => {
83     "service" => "S3",
84     "access_key_id" => "AKIASQUXHPE7AMJQRFOS",
85     "secret_access_key" => web_passwords["aws_key"],
86     "region" => "eu-west-1",
87     "bucket" => "openstreetmap-gps-images",
88     "use_dualstack_endpoint" => true,
89     "upload" => {
90       "acl" => "public-read",
91       "cache_control" => "public, max-age=31536000, immutable"
92     }
93   }
94 }
95
96 rails_port "www.openstreetmap.org" do
97   ruby ruby_version
98   directory rails_directory
99   user "rails"
100   group "rails"
101   repository "https://git.openstreetmap.org/public/rails.git"
102   revision "live"
103   database_host node[:web][:database_host]
104   database_name "openstreetmap"
105   database_username "rails"
106   database_password db_passwords["rails"]
107   email_from "OpenStreetMap <web@noreply.openstreetmap.org>"
108   status node[:web][:status]
109   messages_domain "messages.openstreetmap.org"
110   gpx_dir "/store/rails/gpx"
111   attachments_dir "/store/rails/attachments"
112   log_path "#{node[:web][:log_directory]}/rails.log"
113   logstash_path "#{node[:web][:log_directory]}/rails-logstash.log"
114   memcache_servers node[:web][:memcached_servers]
115   potlatch2_key web_passwords["potlatch2_key"]
116   id_key web_passwords["id_key"]
117   oauth_key web_passwords["oauth_key"]
118   oauth_application web_passwords["oauth_application"]
119   piwik_configuration "location" => piwik[:location],
120                       "site" => piwik[:site],
121                       "goals" => piwik[:goals].to_hash
122   google_auth_id "651529786092-6c5ahcu0tpp95emiec8uibg11asmk34t.apps.googleusercontent.com"
123   google_auth_secret web_passwords["google_auth_secret"]
124   google_openid_realm "https://www.openstreetmap.org"
125   facebook_auth_id "427915424036881"
126   facebook_auth_secret web_passwords["facebook_auth_secret"]
127   windowslive_auth_id "0000000040153C51"
128   windowslive_auth_secret web_passwords["windowslive_auth_secret"]
129   github_auth_id "acf7da34edee99e35499"
130   github_auth_secret web_passwords["github_auth_secret"]
131   wikipedia_auth_id "e4fe0c2c5855d23ed7e1f1c0fa1f1c58"
132   wikipedia_auth_secret web_passwords["wikipedia_auth_secret"]
133   thunderforest_key web_passwords["thunderforest_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 end
147
148 gem_package "bundler#{ruby_version}" do
149   package_name "bundler"
150   gem_binary "gem#{ruby_version}"
151   options "--format-executable"
152 end
153
154 bundle = if File.exist?("/usr/bin/bundle#{ruby_version}")
155            "/usr/bin/bundle#{ruby_version}"
156          else
157            "/usr/local/bin/bundle#{ruby_version}"
158          end
159
160 systemd_service "rails-jobs@" do
161   description "Rails job queue runner"
162   type "simple"
163   environment "RAILS_ENV" => "production", "QUEUE" => "%I"
164   user "rails"
165   working_directory rails_directory
166   exec_start "#{bundle} exec rake jobs:work"
167   restart "on-failure"
168   private_tmp true
169   private_devices true
170   protect_system "full"
171   protect_home true
172   no_new_privileges true
173 end
174
175 package "libjson-xs-perl"
176
177 template "/usr/local/bin/cleanup-rails-assets" do
178   source "cleanup-assets.erb"
179   owner "root"
180   group "root"
181   mode "755"
182 end
183
184 gem_package "apachelogregex"
185 gem_package "file-tail"
186
187 template "/usr/local/bin/api-statistics" do
188   source "api-statistics.erb"
189   owner "root"
190   group "root"
191   mode "755"
192 end
193
194 systemd_service "api-statistics" do
195   description "OpenStreetMap API Statistics Daemon"
196   user "rails"
197   group "adm"
198   exec_start "/usr/local/bin/api-statistics"
199   private_tmp true
200   private_devices true
201   private_network true
202   protect_system "full"
203   protect_home true
204   no_new_privileges true
205   restart "on-failure"
206 end
207
208 service "api-statistics" do
209   action [:enable, :start]
210   supports :restart => true
211   subscribes :restart, "template[/usr/local/bin/api-statistics]"
212   subscribes :restart, "systemd_service[api-statistics]"
213 end
214
215 gem_package "hpricot"
216
217 munin_plugin "api_calls_status"
218 munin_plugin "api_calls_num"
219
220 munin_plugin "api_calls_#{node[:hostname]}" do
221   target "api_calls_"
222 end
223
224 munin_plugin "api_waits_#{node[:hostname]}" do
225   target "api_waits_"
226 end