# limitations under the License.
#
-node.default[:memcached][:ip_address] = node.internal_ipaddress
+node.default[:memcached][:ip_address] = node.internal_ipaddress || "127.0.0.1"
include_recipe "memcached"
include_recipe "apache"
apache_module "alias"
apache_module "expires"
apache_module "headers"
-apache_module "proxy_http"
-apache_module "proxy_balancer"
+apache_module "proxy"
+apache_module "proxy_fcgi"
apache_module "lbmethod_byrequests"
apache_module "lbmethod_bybusyness"
+apache_module "reqtimeout"
apache_module "rewrite"
apache_module "unique_id"
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
+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