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.
21 include_recipe "tools"
22 include_recipe "web::base"
24 db_passwords = data_bag_item("db", "passwords")
26 package "openstreetmap-cgimap-bin" do
30 database_host = node[:web][:readonly_database_host] || node[:web][:database_host]
32 memcached_servers = node[:web][:memcached_servers] || []
35 "CGIMAP_SOCKET" => "/run/cgimap/socket",
36 "CGIMAP_HOST" => database_host,
37 "CGIMAP_DBNAME" => "openstreetmap",
38 "CGIMAP_USERNAME" => "cgimap",
39 "CGIMAP_PASSWORD" => db_passwords["cgimap"],
40 "CGIMAP_OAUTH_HOST" => node[:web][:database_host],
41 "CGIMAP_UPDATE_HOST" => node[:web][:database_host],
42 "CGIMAP_PIDFILE" => "#{node[:web][:pid_directory]}/cgimap.pid",
43 "CGIMAP_LOGFILE" => "#{node[:web][:log_directory]}/cgimap.log",
44 "CGIMAP_MEMCACHE" => memcached_servers.join(","),
45 "CGIMAP_RATELIMIT" => "204800",
46 "CGIMAP_MAXDEBT" => "250",
47 "CGIMAP_MODERATOR_RATELIMIT" => "1048576",
48 "CGIMAP_MODERATOR_MAXDEBT" => "1280",
49 "CGIMAP_MAP_AREA" => node[:web][:max_request_area],
50 "CGIMAP_MAP_NODES" => node[:web][:max_number_of_nodes],
51 "CGIMAP_MAX_WAY_NODES" => node[:web][:max_number_of_way_nodes],
52 "CGIMAP_MAX_RELATION_MEMBERS" => node[:web][:max_number_of_relation_members],
53 "CGIMAP_RATELIMIT_UPLOAD" => "true"
56 if %w[database_readonly api_readonly].include?(node[:web][:status])
57 cgimap_options["CGIMAP_DISABLE_API_WRITE"] = "true"
60 systemd_service "cgimap" do
61 description "OpenStreetMap API Server"
63 environment_file cgimap_options
67 exec_start "/usr/bin/openstreetmap-cgimap --daemon --instances 30 --basic_auth_support false --oauth_10_support falsE"
68 exec_reload "/bin/kill -HUP $MAINPID"
69 runtime_directory "cgimap"
74 no_new_privileges true
76 pid_file "#{node[:web][:pid_directory]}/cgimap.pid"
79 if %w[database_offline api_offline].include?(node[:web][:status])
85 action [:enable, :start]
86 supports :restart => true, :reload => true
87 subscribes :restart, "package[openstreetmap-cgimap-bin]"
88 subscribes :restart, "systemd_service[cgimap]"