]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/recipes/default.rb
Use TCP/IP connections for FPM on 14.04
[chef.git] / cookbooks / nominatim / recipes / default.rb
1 #
2 # Cookbook Name:: nominatim
3 # Recipe:: default
4 #
5 # Copyright 2012, 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 include_recipe "apache::ssl"
21 include_recipe "postgresql"
22 include_recipe "git"
23
24 package "php5"
25 package "php5-cli"
26 package "php5-pgsql"
27 package "php5-fpm"
28 package "php-pear"
29 package "php-apc"
30
31 apache_module "rewrite"
32
33 if node[:lsb][:release].to_f >= 14.04
34   apache_module "proxy"
35   apache_module "proxy_fcgi"
36 else
37   apache_module "fastcgi-handler"
38 end
39
40 home_directory = data_bag_item("accounts", "nominatim")["home"]
41 source_directory = "#{home_directory}/nominatim"
42 email_errors = data_bag_item("accounts", "lonvia")["email"]
43
44 database_cluster = node[:nominatim][:database][:cluster]
45 database_version = database_cluster.sub(/\/.*/, "")
46 database_name = node[:nominatim][:database][:dbname]
47
48 postgis_version = node[:nominatim][:database][:postgis]
49
50 service "php5-fpm" do
51   if node[:lsb][:release].to_f >= 14.04
52     provider Chef::Provider::Service::Upstart
53   end
54   action [ :enable, :start ]
55   supports :status => true, :restart => true, :reload => true
56 end
57
58 apache_site "nominatim.openstreetmap.org" do
59   template "apache.erb"
60   directory source_directory
61   variables :pools => node[:nominatim][:fpm_pools]
62 end
63
64 node[:nominatim][:fpm_pools].each do |name,data|
65   template "/etc/php5/fpm/pool.d/#{name}.conf" do
66     source "fpm.conf.erb"
67     owner "root"
68     group "root"
69     mode 0644
70     variables data.merge(:name => name, :port => data[:port])
71     notifies :reload, "service[php5-fpm]"
72   end
73 end
74
75 postgresql_user "tomh" do
76   cluster database_cluster
77   superuser true
78 end
79
80 postgresql_user "lonvia" do
81   cluster database_cluster
82   superuser true
83 end
84
85 postgresql_user "twain" do
86   cluster database_cluster
87   superuser true
88 end
89
90 postgresql_user "nominatim" do
91   cluster database_cluster
92   superuser true
93 end
94
95 postgresql_user "www-data" do
96   cluster database_cluster
97 end
98
99 postgresql_munin "nominatim" do
100   cluster database_cluster
101   database database_name
102 end
103
104 directory "/var/log/nominatim" do
105   owner "nominatim"
106   group "nominatim"
107   mode 0755
108 end
109
110 template "/etc/logrotate.d/nominatim" do
111   source "logrotate.nominatim.erb"
112   owner "root"
113   group "root"
114   mode 0644
115 end
116
117
118 package "osmosis"
119 package "gcc"
120 package "proj-bin"
121 package "libgeos-c1"
122 package "postgresql-#{database_version}-postgis-#{postgis_version}"
123 package "postgresql-server-dev-#{database_version}"
124 package "build-essential"
125 package "libxml2-dev"
126 package "libgeos-dev"
127 package "libgeos++-dev"
128 package "libpq-dev"
129 package "libbz2-dev"
130 package "libtool"
131 package "automake"
132 package "libproj-dev"
133 package "libprotobuf-c0-dev"
134 package "protobuf-c-compiler"
135 package "python-psycopg2"
136
137 execute "php-pear-db" do
138   command "pear install DB"
139   not_if { File.exists?("/usr/share/php/DB") }
140 end
141
142 execute "compile_nominatim" do
143   action :nothing
144   command "cd #{source_directory} && ./autogen.sh && ./configure && make"
145   user "nominatim"
146 end
147
148 git source_directory do
149   action :checkout
150   repository node[:nominatim][:repository]
151   enable_submodules true
152   user "nominatim"
153   group "nominatim"
154   notifies :run, "execute[compile_nominatim]"
155 end
156
157 directory "#{source_directory}/log" do
158   owner "nominatim"
159   group "nominatim"
160   mode 0755
161 end
162
163
164 template "#{source_directory}/.git/hooks/post-merge" do
165   source "update_source.erb"
166   owner  "nominatim"
167   group  "nominatim"
168   mode   0755
169   variables :source_directory => source_directory
170 end
171
172 template "#{source_directory}/settings/local.php" do
173   source "nominatim.erb"
174   owner "nominatim"
175   group "nominatim"
176   mode 0664
177 end
178
179 template "#{source_directory}/settings/ip_blocks.conf" do
180   action :create_if_missing
181   source "ipblocks.erb"
182   owner "nominatim"
183   group "nominatim"
184   mode 0664
185 end
186
187 file "#{source_directory}/settings/apache_blocks.conf" do
188   action :create_if_missing
189   owner "nominatim"
190   group "nominatim"
191   mode 0664
192 end
193
194 file "#{source_directory}/settings/ip_blocks.map" do
195   action :create_if_missing
196   owner "nominatim"
197   group "nominatim"
198   mode 0664
199 end
200
201 if node[:nominatim][:enabled]
202   cron_action = :create
203 else
204   cron_action = :delete
205 end
206
207 cron "nominatim_logrotate" do
208   action cron_action
209   hour "5"
210   minute "30"
211   weekday "0"
212   command "#{source_directory}/utils/cron_logrotate.sh"
213   user "nominatim"
214   mailto email_errors
215 end
216
217 cron "nominatim_banip" do
218   action cron_action
219   command "#{source_directory}/utils/cron_banip.py"
220   user "nominatim"
221   mailto email_errors
222 end
223
224 cron "nominatim_vacuum" do
225   action cron_action
226   hour "2"
227   minute "00"
228   command "#{source_directory}/utils/cron_vacuum.sh"
229   user "nominatim"
230   mailto email_errors
231 end
232
233 ['search', 'reverse'].each do |filename|
234   ['phpj', 'phpx'].each do |ext|
235     link "#{source_directory}/website/#{filename}.#{ext}" do
236       to "#{source_directory}/website/#{filename}.php"
237       user "nominatim"
238       group "nominatim"
239     end
240   end
241 end
242
243 template "#{source_directory}/utils/nominatim-update" do
244   source "updater.erb"
245   user   "nominatim"
246   group  "nominatim"
247   mode   0755
248 end
249
250 template "/etc/init.d/nominatim-update" do
251   source "updater.init.erb"
252   user   "nominatim"
253   group  "nominatim"
254   mode   0755
255   variables :source_directory => source_directory
256 end
257
258 munin_plugin_conf "nominatim" do
259   template "munin.erb"
260 end
261
262 munin_plugin "nominatim_importlag" do
263   target "#{source_directory}/munin/nominatim_importlag"
264 end
265
266 munin_plugin "nominatim_query_speed" do
267   target "#{source_directory}/munin/nominatim_query_speed"
268 end
269
270 munin_plugin "nominatim_requests" do
271   target "#{source_directory}/munin/nominatim_requests"
272 end
273
274 munin_plugin "nominatim_throttled_ips" do
275   target "#{source_directory}/munin/nominatim_throttled_ips"
276 end
277
278 template "/usr/local/bin/backup-nominatim" do
279   source "backup-nominatim.erb"
280   owner "root"
281   group "root"
282   mode 0755
283 end
284
285 cron "nominatim_backup" do
286   action cron_action
287   hour "3"
288   minute "00"
289   day "1"
290   command "/usr/local/bin/backup-nominatim"
291   user "nominatim"
292   mailto email_errors
293 end