#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
-if node[:web][:readonly_database_host]
- database_host = node[:web][:readonly_database_host]
- database_readonly = true
-else
- database_host = node[:web][:database_host]
- database_readonly = node[:web][:status] == "database_readonly"
-end
+database_host = node[:web][:readonly_database_host] || node[:web][:database_host]
systemd_service "cgimap" do
description "OpenStreetMap API Server"
type "forking"
environment_file "CGIMAP_HOST" => database_host,
"CGIMAP_DBNAME" => "openstreetmap",
systemd_service "cgimap" do
description "OpenStreetMap API Server"
type "forking"
environment_file "CGIMAP_HOST" => database_host,
"CGIMAP_DBNAME" => "openstreetmap",
- "CGIMAP_USERNAME" => "rails",
- "CGIMAP_PASSWORD" => db_passwords["rails"],
+ "CGIMAP_USERNAME" => "cgimap",
+ "CGIMAP_PASSWORD" => db_passwords["cgimap"],
"CGIMAP_PIDFILE" => "#{node[:web][:pid_directory]}/cgimap.pid",
"CGIMAP_LOGFILE" => "#{node[:web][:log_directory]}/cgimap.log",
"CGIMAP_MEMCACHE" => memcached_servers.join(","),
"CGIMAP_RATELIMIT" => "204800",
"CGIMAP_MAXDEBT" => "250"
user "rails"
"CGIMAP_PIDFILE" => "#{node[:web][:pid_directory]}/cgimap.pid",
"CGIMAP_LOGFILE" => "#{node[:web][:log_directory]}/cgimap.log",
"CGIMAP_MEMCACHE" => memcached_servers.join(","),
"CGIMAP_RATELIMIT" => "204800",
"CGIMAP_MAXDEBT" => "250"
user "rails"