X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/1c848471a16f9d1ee1fc8a327af110447ea1ef4c..6fecdd677ea97324e8307dc3d19bdc294d9456e6:/cookbooks/web/recipes/frontend.rb diff --git a/cookbooks/web/recipes/frontend.rb b/cookbooks/web/recipes/frontend.rb index 8ed2db77b..abed491fb 100644 --- a/cookbooks/web/recipes/frontend.rb +++ b/cookbooks/web/recipes/frontend.rb @@ -20,41 +20,31 @@ 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" apache_module "proxy_http" apache_module "proxy_balancer" +apache_module "lbmethod_byrequests" +apache_module "lbmethod_bybusyness" apache_module "rewrite" +apache_module "unique_id" apache_site "default" do - action [ :disable ] + action [:disable] end apache_site "www.openstreetmap.org" do template "apache.frontend.erb" + variables :secret_key_base => web_passwords["secret_key_base"] end -gem_package "hpricot" -gem_package "home_run" -gem_package "apachelogregex" - template "/etc/logrotate.d/apache2" do source "logrotate.apache.erb" owner "root" group "root" mode 0644 end - -munin_plugin "api_calls_num" do - action :delete -end - -munin_plugin "api_calls_#{node[:hostname]}" do - target "api_calls_" -end - -munin_plugin "api_waits_#{node[:hostname]}" do - target "api_waits_" -end