]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/rails.rb
a6af8715f290fd9c2a9381dd63402ee21c48c01c
[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 "tools"
21 include_recipe "web::base"
22
23 include_recipe "apache"
24 include_recipe "passenger"
25 include_recipe "geoipupdate"
26 include_recipe "git"
27 include_recipe "nodejs"
28
29 web_passwords = data_bag_item("web", "passwords")
30 db_passwords = data_bag_item("db", "passwords")
31
32 ssl_certificate "www.openstreetmap.org" do
33   domains ["www.openstreetmap.org", "www.osm.org",
34            "api.openstreetmap.org", "api.osm.org",
35            "maps.openstreetmap.org", "maps.osm.org",
36            "mapz.openstreetmap.org", "mapz.osm.org",
37            "openstreetmap.org", "osm.org"]
38   notifies :reload, "service[apache2]"
39 end
40
41 nodejs_package "svgo"
42
43 template "/etc/cron.hourly/passenger" do
44   cookbook "web"
45   source "passenger.cron.erb"
46   owner "root"
47   group "root"
48   mode 0o755
49 end
50
51 ruby_version = node[:passenger][:ruby_version]
52 rails_directory = "#{node[:web][:base_directory]}/rails"
53
54 piwik = data_bag_item("web", "piwik")
55
56 storage = {
57   "aws" => {
58     "service" => "S3",
59     "access_key_id" => "AKIASQUXHPE7AMJQRFOS",
60     "secret_access_key" => web_passwords["aws_key"],
61     "region" => "eu-west-1",
62     "bucket" => "openstreetmap-user-avatars",
63     "use_dualstack_endpoint" => true,
64     "upload" => {
65       "acl" => "public-read",
66       "cache_control" => "public, max-age=31536000, immutable"
67     }
68   }
69 }
70
71 rails_port "www.openstreetmap.org" do
72   ruby ruby_version
73   directory rails_directory
74   user "rails"
75   group "rails"
76   repository "https://git.openstreetmap.org/public/rails.git"
77   revision "live"
78   database_host node[:web][:database_host]
79   database_name "openstreetmap"
80   database_username "rails"
81   database_password db_passwords["rails"]
82   email_from "OpenStreetMap <web@noreply.openstreetmap.org>"
83   status node[:web][:status]
84   messages_domain "messages.openstreetmap.org"
85   gpx_dir "/store/rails/gpx"
86   attachments_dir "/store/rails/attachments"
87   log_path "#{node[:web][:log_directory]}/rails.log"
88   logstash_path "#{node[:web][:log_directory]}/rails-logstash.log"
89   memcache_servers node[:web][:memcached_servers]
90   potlatch2_key web_passwords["potlatch2_key"]
91   id_key web_passwords["id_key"]
92   oauth_key web_passwords["oauth_key"]
93   piwik_configuration "location" => piwik[:location],
94                       "site" => piwik[:site],
95                       "goals" => piwik[:goals].to_hash
96   google_auth_id "651529786092-6c5ahcu0tpp95emiec8uibg11asmk34t.apps.googleusercontent.com"
97   google_auth_secret web_passwords["google_auth_secret"]
98   google_openid_realm "https://www.openstreetmap.org"
99   facebook_auth_id "427915424036881"
100   facebook_auth_secret web_passwords["facebook_auth_secret"]
101   windowslive_auth_id "0000000040153C51"
102   windowslive_auth_secret web_passwords["windowslive_auth_secret"]
103   github_auth_id "acf7da34edee99e35499"
104   github_auth_secret web_passwords["github_auth_secret"]
105   wikipedia_auth_id "e4fe0c2c5855d23ed7e1f1c0fa1f1c58"
106   wikipedia_auth_secret web_passwords["wikipedia_auth_secret"]
107   thunderforest_key web_passwords["thunderforest_key"]
108   totp_key web_passwords["totp_key"]
109   csp_enforce true
110   trace_use_job_queue true
111   diary_feed_delay 12
112   storage_configuration storage
113   storage_service "aws"
114   storage_url "https://openstreetmap-user-avatars.s3.dualstack.eu-west-1.amazonaws.com"
115 end
116
117 systemd_service "rails-jobs@" do
118   description "Rails job queue runner"
119   type "simple"
120   environment "RAILS_ENV" => "production", "QUEUE" => "%I"
121   user "rails"
122   working_directory rails_directory
123   exec_start "/usr/local/bin/bundle#{ruby_version} exec rake jobs:work"
124   restart "on-failure"
125   private_tmp true
126   private_devices true
127   protect_system "full"
128   protect_home true
129   no_new_privileges true
130 end
131
132 package "libjson-xs-perl"
133
134 template "/usr/local/bin/cleanup-rails-assets" do
135   source "cleanup-assets.erb"
136   owner "root"
137   group "root"
138   mode 0o755
139 end
140
141 gem_package "apachelogregex"
142 gem_package "file-tail"
143
144 template "/usr/local/bin/api-statistics" do
145   source "api-statistics.erb"
146   owner "root"
147   group "root"
148   mode 0o755
149 end
150
151 systemd_service "api-statistics" do
152   description "OpenStreetMap API Statistics Daemon"
153   user "rails"
154   group "adm"
155   exec_start "/usr/local/bin/api-statistics"
156   private_tmp true
157   private_devices true
158   private_network true
159   protect_system "full"
160   protect_home true
161   no_new_privileges true
162   restart "on-failure"
163 end
164
165 service "api-statistics" do
166   action [:enable, :start]
167   supports :restart => true
168   subscribes :restart, "template[/usr/local/bin/api-statistics]"
169   subscribes :restart, "systemd_service[api-statistics]"
170 end
171
172 gem_package "hpricot"
173
174 munin_plugin "api_calls_status"
175 munin_plugin "api_calls_num"
176
177 munin_plugin "api_calls_#{node[:hostname]}" do
178   target "api_calls_"
179 end
180
181 munin_plugin "api_waits_#{node[:hostname]}" do
182   target "api_waits_"
183 end