5 # Copyright:: 2011, OpenStreetMap Foundation
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
11 # https://www.apache.org/licenses/LICENSE-2.0
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.
20 include_recipe "tools"
21 include_recipe "web::base"
23 db_passwords = data_bag_item("db", "passwords")
25 package "openstreetmap-cgimap-bin" do
29 if node[:web][:readonly_database_host]
30 database_host = node[:web][:readonly_database_host]
31 database_readonly = true
33 database_host = node[:web][:database_host]
34 database_readonly = node[:web][:status] == "database_readonly"
37 memcached_servers = node[:web][:memcached_servers] || []
39 switches = database_readonly ? " --readonly" : ""
41 systemd_service "cgimap" do
42 description "OpenStreetMap API Server"
44 environment_file "CGIMAP_HOST" => database_host,
45 "CGIMAP_DBNAME" => "openstreetmap",
46 "CGIMAP_USERNAME" => "cgimap",
47 "CGIMAP_PASSWORD" => db_passwords["cgimap"],
48 "CGIMAP_OAUTH_HOST" => node[:web][:database_host],
49 "CGIMAP_UPDATE_HOST" => node[:web][:database_host],
50 "CGIMAP_PIDFILE" => "#{node[:web][:pid_directory]}/cgimap.pid",
51 "CGIMAP_LOGFILE" => "#{node[:web][:log_directory]}/cgimap.log",
52 "CGIMAP_MEMCACHE" => memcached_servers.join(","),
53 "CGIMAP_RATELIMIT" => "204800",
54 "CGIMAP_MAXDEBT" => "250"
56 exec_start "/usr/bin/openstreetmap-cgimap --daemon --port 8000 --instances 30#{switches}"
57 exec_reload "/bin/kill -HUP $MAINPID"
62 no_new_privileges true
64 pid_file "#{node[:web][:pid_directory]}/cgimap.pid"
67 if %w[database_offline api_offline].include?(node[:web][:status])
73 action [:enable, :start]
74 supports :restart => true, :reload => true
75 subscribes :restart, "package[openstreetmap-cgimap-bin]"
76 subscribes :restart, "systemd_service[cgimap]"