]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/cgimap.rb
Merge pull request #334 from Tigerfell/tiles
[chef.git] / cookbooks / web / recipes / cgimap.rb
1 #
2 # Cookbook:: web
3 # Recipe:: cgimap
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 "apt"
21 include_recipe "tools"
22 include_recipe "web::base"
23
24 db_passwords = data_bag_item("db", "passwords")
25
26 package "openstreetmap-cgimap-bin" do
27   action :upgrade
28 end
29
30 database_host = if node[:web][:readonly_database_host]
31                   node[:web][:readonly_database_host]
32                 else
33                   node[:web][:database_host]
34                 end
35
36 memcached_servers = node[:web][:memcached_servers] || []
37
38 systemd_service "cgimap" do
39   description "OpenStreetMap API Server"
40   type "forking"
41   environment_file "CGIMAP_HOST" => database_host,
42                    "CGIMAP_DBNAME" => "openstreetmap",
43                    "CGIMAP_USERNAME" => "cgimap",
44                    "CGIMAP_PASSWORD" => db_passwords["cgimap"],
45                    "CGIMAP_OAUTH_HOST" => node[:web][:database_host],
46                    "CGIMAP_UPDATE_HOST" => node[:web][:database_host],
47                    "CGIMAP_PIDFILE" => "#{node[:web][:pid_directory]}/cgimap.pid",
48                    "CGIMAP_LOGFILE" => "#{node[:web][:log_directory]}/cgimap.log",
49                    "CGIMAP_MEMCACHE" => memcached_servers.join(","),
50                    "CGIMAP_RATELIMIT" => "204800",
51                    "CGIMAP_MAXDEBT" => "250"
52   user "rails"
53   exec_start "/usr/bin/openstreetmap-cgimap --daemon --port 8000 --instances 30"
54   exec_reload "/bin/kill -HUP $MAINPID"
55   private_tmp true
56   private_devices true
57   protect_system "full"
58   protect_home true
59   no_new_privileges true
60   restart "on-failure"
61   pid_file "#{node[:web][:pid_directory]}/cgimap.pid"
62 end
63
64 if %w[database_offline api_offline].include?(node[:web][:status])
65   service "cgimap" do
66     action :stop
67   end
68 else
69   service "cgimap" do
70     action [:enable, :start]
71     supports :restart => true, :reload => true
72     subscribes :restart, "package[openstreetmap-cgimap-bin]"
73     subscribes :restart, "systemd_service[cgimap]"
74   end
75 end