# limitations under the License.
#
+node.default[:memcached][:ip_address] = node.internal_ipaddress
+
+include_recipe "memcached"
include_recipe "apache"
include_recipe "web::rails"
+include_recipe "web::cgimap"
web_passwords = data_bag_item("web", "passwords")
action [:disable]
end
-# Static legacy files used by external websites
-# eg: OpenLayers
remote_directory "#{node[:web][:base_directory]}/static" do
source "static"
owner "root"
mode "755"
files_owner "root"
files_group "root"
- files_mode 0o644
+ files_mode "644"
end
apache_site "www.openstreetmap.org" do
subscribes :restart, "rails_port[www.openstreetmap.org]"
subscribes :restart, "systemd_service[rails-jobs]"
end
+
+service "rails-jobs@storage" do
+ action [:enable, :start]
+ supports :restart => true
+ subscribes :restart, "rails_port[www.openstreetmap.org]"
+ subscribes :restart, "systemd_service[rails-jobs]"
+end
+
+if node[:web][:primary_cluster]
+ service "rails-jobs@traces" do
+ action [:enable, :start]
+ supports :restart => true
+ subscribes :restart, "rails_port[www.openstreetmap.org]"
+ subscribes :restart, "systemd_service[rails-jobs]"
+ end
+else
+ service "rails-jobs@traces" do
+ action [:disable, :stop]
+ end
+end