]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/rails.rb
Use strings for file modes
[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   "aws" => {
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 }
71
72 rails_port "www.openstreetmap.org" do
73   ruby ruby_version
74   directory rails_directory
75   user "rails"
76   group "rails"
77   repository "https://git.openstreetmap.org/public/rails.git"
78   revision "live"
79   database_host node[:web][:database_host]
80   database_name "openstreetmap"
81   database_username "rails"
82   database_password db_passwords["rails"]
83   email_from "OpenStreetMap <web@noreply.openstreetmap.org>"
84   status node[:web][:status]
85   messages_domain "messages.openstreetmap.org"
86   gpx_dir "/store/rails/gpx"
87   attachments_dir "/store/rails/attachments"
88   log_path "#{node[:web][:log_directory]}/rails.log"
89   logstash_path "#{node[:web][:log_directory]}/rails-logstash.log"
90   memcache_servers node[:web][:memcached_servers]
91   potlatch2_key web_passwords["potlatch2_key"]
92   id_key web_passwords["id_key"]
93   oauth_key web_passwords["oauth_key"]
94   piwik_configuration "location" => piwik[:location],
95                       "site" => piwik[:site],
96                       "goals" => piwik[:goals].to_hash
97   google_auth_id "651529786092-6c5ahcu0tpp95emiec8uibg11asmk34t.apps.googleusercontent.com"
98   google_auth_secret web_passwords["google_auth_secret"]
99   google_openid_realm "https://www.openstreetmap.org"
100   facebook_auth_id "427915424036881"
101   facebook_auth_secret web_passwords["facebook_auth_secret"]
102   windowslive_auth_id "0000000040153C51"
103   windowslive_auth_secret web_passwords["windowslive_auth_secret"]
104   github_auth_id "acf7da34edee99e35499"
105   github_auth_secret web_passwords["github_auth_secret"]
106   wikipedia_auth_id "e4fe0c2c5855d23ed7e1f1c0fa1f1c58"
107   wikipedia_auth_secret web_passwords["wikipedia_auth_secret"]
108   thunderforest_key web_passwords["thunderforest_key"]
109   totp_key web_passwords["totp_key"]
110   csp_enforce true
111   trace_use_job_queue true
112   diary_feed_delay 12
113   storage_configuration storage
114   storage_service "aws"
115   storage_url "https://openstreetmap-user-avatars.s3.dualstack.eu-west-1.amazonaws.com"
116 end
117
118 systemd_service "rails-jobs@" do
119   description "Rails job queue runner"
120   type "simple"
121   environment "RAILS_ENV" => "production", "QUEUE" => "%I"
122   user "rails"
123   working_directory rails_directory
124   exec_start "/usr/local/bin/bundle#{ruby_version} exec rake jobs:work"
125   restart "on-failure"
126   private_tmp true
127   private_devices true
128   protect_system "full"
129   protect_home true
130   no_new_privileges true
131 end
132
133 package "libjson-xs-perl"
134
135 template "/usr/local/bin/cleanup-rails-assets" do
136   source "cleanup-assets.erb"
137   owner "root"
138   group "root"
139   mode "755"
140 end
141
142 gem_package "apachelogregex"
143 gem_package "file-tail"
144
145 template "/usr/local/bin/api-statistics" do
146   source "api-statistics.erb"
147   owner "root"
148   group "root"
149   mode "755"
150 end
151
152 systemd_service "api-statistics" do
153   description "OpenStreetMap API Statistics Daemon"
154   user "rails"
155   group "adm"
156   exec_start "/usr/local/bin/api-statistics"
157   private_tmp true
158   private_devices true
159   private_network true
160   protect_system "full"
161   protect_home true
162   no_new_privileges true
163   restart "on-failure"
164 end
165
166 service "api-statistics" do
167   action [:enable, :start]
168   supports :restart => true
169   subscribes :restart, "template[/usr/local/bin/api-statistics]"
170   subscribes :restart, "systemd_service[api-statistics]"
171 end
172
173 gem_package "hpricot"
174
175 munin_plugin "api_calls_status"
176 munin_plugin "api_calls_num"
177
178 munin_plugin "api_calls_#{node[:hostname]}" do
179   target "api_calls_"
180 end
181
182 munin_plugin "api_waits_#{node[:hostname]}" do
183   target "api_waits_"
184 end