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