]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/recipes/default.rb
Replace cron.d templates with cron_d resources
[chef.git] / cookbooks / nominatim / recipes / default.rb
1 #
2 # Cookbook:: nominatim
3 # Recipe:: base
4 #
5 # Copyright:: 2015, 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 "accounts"
21 include_recipe "munin"
22 include_recipe "php::fpm"
23
24 basedir = data_bag_item("accounts", "nominatim")["home"]
25 email_errors = data_bag_item("accounts", "lonvia")["email"]
26
27 directory basedir do
28   owner "nominatim"
29   group "nominatim"
30   mode 0o755
31   recursive true
32 end
33
34 directory node[:nominatim][:logdir] do
35   owner "nominatim"
36   group "nominatim"
37   mode 0o755
38   recursive true
39 end
40
41 file "#{node[:nominatim][:logdir]}/query.log" do
42   action :create_if_missing
43   owner "www-data"
44   group "adm"
45   mode 0o664
46 end
47
48 file "#{node[:nominatim][:logdir]}/update.log" do
49   action :create_if_missing
50   owner "nominatim"
51   group "adm"
52   mode 0o664
53 end
54
55 # exception granted for a limited time so that they can set up their own server
56 firewall_rule "increase-limits-gnome-proxy" do
57   action :accept
58   family "inet"
59   source "net:8.43.85.23"
60   dest "fw"
61   proto "tcp:syn"
62   dest_ports "https"
63   rate_limit "s:10/sec:30"
64 end
65
66 ## Postgresql
67
68 include_recipe "postgresql"
69
70 postgresql_version = node[:nominatim][:dbcluster].split("/").first
71 postgis_version = node[:nominatim][:postgis]
72
73 package "postgresql-#{postgresql_version}-postgis-#{postgis_version}"
74
75 node[:nominatim][:dbadmins].each do |user|
76   postgresql_user user do
77     cluster node[:nominatim][:dbcluster]
78     superuser true
79     only_if { node[:nominatim][:state] != "slave" }
80   end
81 end
82
83 postgresql_user "nominatim" do
84   cluster node[:nominatim][:dbcluster]
85   superuser true
86   only_if { node[:nominatim][:state] != "slave" }
87 end
88
89 postgresql_user "www-data" do
90   cluster node[:nominatim][:dbcluster]
91   only_if { node[:nominatim][:state] != "slave" }
92 end
93
94 postgresql_munin "nominatim" do
95   cluster node[:nominatim][:dbcluster]
96   database node[:nominatim][:dbname]
97 end
98
99 directory "#{basedir}/tablespaces" do
100   owner "postgres"
101   group "postgres"
102   mode 0o700
103 end
104
105 # Note: tablespaces must be exactly in the same location on each
106 #       Nominatim instance when replication is in use. Therefore
107 #       use symlinks to canonical directory locations.
108 node[:nominatim][:tablespaces].each do |name, location|
109   directory location do
110     owner "postgres"
111     group "postgres"
112     mode 0o700
113     recursive true
114   end
115
116   link "#{basedir}/tablespaces/#{name}" do
117     to location
118   end
119
120   postgresql_tablespace name do
121     cluster node[:nominatim][:dbcluster]
122     location "#{basedir}/tablespaces/#{name}"
123   end
124 end
125
126 if node[:nominatim][:state] == "master"
127   postgresql_user "replication" do
128     cluster node[:nominatim][:dbcluster]
129     password data_bag_item("nominatim", "passwords")["replication"]
130     replication true
131   end
132
133   directory node[:rsyncd][:modules][:archive][:path] do
134     owner "postgres"
135     group "postgres"
136     mode 0o700
137   end
138
139   template "/usr/local/bin/clean-db-nominatim" do
140     source "clean-db-nominatim.erb"
141     owner "root"
142     group "root"
143     mode 0o755
144     variables :archive_dir => node[:rsyncd][:modules][:archive][:path],
145               :update_stop_file => "#{basedir}/status/updates_disabled",
146               :streaming_clients => search(:node, "nominatim_state:slave").map { |slave| slave[:fqdn] }.join(" ")
147   end
148 end
149
150 ## Nominatim backend
151
152 include_recipe "git"
153
154 package %w[
155   build-essential
156   cmake
157   g++
158   libboost-dev
159   libboost-system-dev
160   libboost-filesystem-dev
161   libexpat1-dev
162   zlib1g-dev
163   libxml2-dev
164   libbz2-dev
165   libpq-dev
166   libgeos++-dev
167   libproj-dev
168   python3-pyosmium
169   pyosmium
170   python3-psycopg2
171   php-pgsql
172   php-intl
173 ]
174
175 source_directory = "#{basedir}/nominatim"
176 build_directory = "#{basedir}/bin"
177
178 directory build_directory do
179   owner "nominatim"
180   group "nominatim"
181   mode 0o755
182   recursive true
183 end
184
185 # Normally syncing via chef is a bad idea because syncing might involve
186 # an update of database functions which should not be done while an update
187 # is ongoing. Therefore we sync in between update cycles. There is an
188 # exception for slaves: they get DB function updates from the master, so
189 # only the source code needs to be updated, which chef may do.
190 git source_directory do
191   action node[:nominatim][:state] == "slave" ? :sync : :checkout
192   repository node[:nominatim][:repository]
193   revision node[:nominatim][:revision]
194   enable_submodules true
195   user "nominatim"
196   group "nominatim"
197   not_if { node[:nominatim][:state] != "slave" && File.exist?("#{source_directory}/README.md") }
198   notifies :run, "execute[compile_nominatim]", :immediately
199 end
200
201 execute "compile_nominatim" do
202   action :nothing
203   user "nominatim"
204   cwd build_directory
205   command "cmake #{source_directory} && make"
206 end
207
208 template "#{source_directory}/.git/hooks/post-merge" do
209   source "git-post-merge-hook.erb"
210   owner "nominatim"
211   group "nominatim"
212   mode 0o755
213   variables :srcdir => source_directory,
214             :builddir => build_directory,
215             :dbname => node[:nominatim][:dbname]
216 end
217
218 template "#{build_directory}/settings/local.php" do
219   source "settings.erb"
220   owner "nominatim"
221   group "nominatim"
222   mode 0o664
223   variables :base_url => node[:nominatim][:state] == "off" ? node[:fqdn] : "nominatim.openstreetmap.org",
224             :dbname => node[:nominatim][:dbname],
225             :flatnode_file => node[:nominatim][:flatnode_file],
226             :log_file => "#{node[:nominatim][:logdir]}/query.log"
227 end
228
229 if node[:nominatim][:flatnode_file]
230   directory File.dirname(node[:nominatim][:flatnode_file]) do
231     recursive true
232   end
233 end
234
235 template "/etc/logrotate.d/nominatim" do
236   source "logrotate.nominatim.erb"
237   owner "root"
238   group "root"
239   mode 0o644
240 end
241
242 external_data = [
243   "wikimedia-importance.sql.gz",
244   "gb_postcode_data.sql.gz"
245 ]
246
247 external_data.each do |fname|
248   remote_file "#{source_directory}/data/#{fname}" do
249     action :create_if_missing
250     source "https://www.nominatim.org/data/#{fname}"
251     owner "nominatim"
252     group "nominatim"
253     mode 0o644
254   end
255 end
256
257 remote_file "#{source_directory}/data/country_osm_grid.sql.gz" do
258   action :create_if_missing
259   source "https://www.nominatim.org/data/country_grid.sql.gz"
260   owner "nominatim"
261   group "nominatim"
262   mode 0o644
263 end
264
265 template "/etc/cron.d/nominatim" do
266   action node[:nominatim][:state] == "off" ? :delete : :create
267   source "nominatim.cron.erb"
268   owner "root"
269   group "root"
270   mode "0644"
271   variables :bin_directory => "#{source_directory}/utils",
272             :mailto => email_errors,
273             :update_maintenance_trigger => "#{basedir}/status/update_maintenance"
274 end
275
276 template "#{source_directory}/utils/nominatim-update" do
277   source "updater.erb"
278   user "nominatim"
279   group "nominatim"
280   mode 0o755
281   variables :bindir => build_directory,
282             :srcdir => source_directory,
283             :logfile => "#{node[:nominatim][:logdir]}/update.log",
284             :branch => node[:nominatim][:revision],
285             :update_stop_file => "#{basedir}/status/updates_disabled",
286             :update_maintenance_trigger => "#{basedir}/status/update_maintenance"
287 end
288
289 template "/etc/init.d/nominatim-update" do
290   source "updater.init.erb"
291   user "nominatim"
292   group "nominatim"
293   mode 0o755
294   variables :source_directory => source_directory
295 end
296
297 %w[backup-nominatim vacuum-db-nominatim].each do |fname|
298   template "/usr/local/bin/#{fname}" do
299     source "#{fname}.erb"
300     owner "root"
301     group "root"
302     mode 0o755
303     variables :db => node[:nominatim][:dbname]
304   end
305 end
306
307 ## webserver frontend
308
309 directory "#{basedir}/etc" do
310   owner "nominatim"
311   group "adm"
312   mode 0o775
313 end
314
315 %w[user_agent referrer email].each do |name|
316   file "#{basedir}/etc/nginx_blocked_#{name}.conf" do
317     action :create_if_missing
318     owner "nominatim"
319     group "adm"
320     mode 0o664
321   end
322 end
323
324 node[:nominatim][:fpm_pools].each do |name, data|
325   php_fpm name do
326     template "fpm.conf.erb"
327     variables data.merge(:name => name)
328   end
329 end
330
331 ssl_certificate node[:fqdn] do
332   domains [node[:fqdn],
333            "nominatim.openstreetmap.org",
334            "nominatim.osm.org",
335            "nominatim.openstreetmap.com",
336            "nominatim.openstreetmap.net",
337            "nominatim.openstreetmaps.org",
338            "nominatim.openmaps.org"]
339   notifies :reload, "service[nginx]"
340 end
341
342 package "apache2" do
343   action :remove
344 end
345
346 include_recipe "nginx"
347
348 nginx_site "default" do
349   action [:delete]
350 end
351
352 nginx_site "nominatim" do
353   template "nginx.erb"
354   directory build_directory
355   variables :pools => node[:nominatim][:fpm_pools],
356             :frontends => search(:node, "recipes:web\\:\\:frontend"),
357             :confdir => "#{basedir}/etc"
358 end
359
360 template "/etc/logrotate.d/nginx" do
361   source "logrotate.nginx.erb"
362   owner "root"
363   group "root"
364   mode 0o644
365 end
366
367 munin_plugin_conf "nominatim" do
368   template "munin.erb"
369   variables :db => node[:nominatim][:dbname],
370             :querylog => "#{node[:nominatim][:logdir]}/query.log"
371 end
372
373 munin_plugin "nominatim_importlag" do
374   target "#{source_directory}/munin/nominatim_importlag"
375 end
376
377 munin_plugin "nominatim_query_speed" do
378   target "#{source_directory}/munin/nominatim_query_speed_querylog"
379 end
380
381 munin_plugin "nominatim_requests" do
382   target "#{source_directory}/munin/nominatim_requests_querylog"
383 end
384
385 directory "#{basedir}/status" do
386   owner "nominatim"
387   group "postgres"
388   mode 0o775
389 end
390
391 include_recipe "fail2ban"
392
393 fail2ban_jail "nominatim_limit_req" do
394   filter "nginx-limit-req"
395   logpath "#{node[:nominatim][:logdir]}/nominatim.openstreetmap.org-error.log"
396   ports [80, 443]
397   maxretry 5
398 end