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