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