X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/1c848471a16f9d1ee1fc8a327af110447ea1ef4c..1763f0e1483f6d301d031fc8341d17302e11548f:/cookbooks/web/recipes/frontend.rb diff --git a/cookbooks/web/recipes/frontend.rb b/cookbooks/web/recipes/frontend.rb index 8ed2db77b..7b32ed3d1 100644 --- a/cookbooks/web/recipes/frontend.rb +++ b/cookbooks/web/recipes/frontend.rb @@ -20,12 +20,18 @@ include_recipe "apache::ssl" include_recipe "web::rails" +web_passwords = data_bag_item("web", "passwords") + apache_module "alias" apache_module "deflate" apache_module "expires" apache_module "headers" apache_module "proxy_http" apache_module "proxy_balancer" +if node[:lsb][:release].to_f >= 14.04 + apache_module "lbmethod_byrequests" + apache_module "lbmethod_bybusyness" +end apache_module "rewrite" apache_site "default" do @@ -34,6 +40,7 @@ end apache_site "www.openstreetmap.org" do template "apache.frontend.erb" + variables :secret_key_base => web_passwords["secret_key_base"] end gem_package "hpricot"