X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/e2cbf44f9da7d166987294c476df694215880712..3a4b1c2078cd515e93a5f1bf8967f380fbd1646f:/cookbooks/web/recipes/rails.rb diff --git a/cookbooks/web/recipes/rails.rb b/cookbooks/web/recipes/rails.rb index ca27a5081..bc10fac39 100644 --- a/cookbooks/web/recipes/rails.rb +++ b/cookbooks/web/recipes/rails.rb @@ -21,36 +21,12 @@ include_recipe "tools" include_recipe "web::base" include_recipe "apache" +include_recipe "passenger" include_recipe "git" web_passwords = data_bag_item("web", "passwords") db_passwords = data_bag_item("db", "passwords") -directory "#{node[:web][:base_directory]}/bin" do - owner "root" - group "root" - mode 0755 -end - -template "#{node[:web][:base_directory]}/bin/ruby" do - source "ruby.erb" - owner "root" - group "root" - mode 0755 - notifies :reload, "service[apache2]" -end - -apache_module "passenger" do - conf "passenger.conf.erb" -end - -package "passenger-common#{node[:web][:ruby_version]}" - -munin_plugin "passenger_memory" -munin_plugin "passenger_processes" -munin_plugin "passenger_queues" -munin_plugin "passenger_requests" - template "/etc/cron.hourly/passenger" do cookbook "web" source "passenger.cron.erb" @@ -61,12 +37,12 @@ end rails_directory = "#{node[:web][:base_directory]}/rails" -piwik_configuration = data_bag_item("web", "piwik").to_hash.reject do |k,v| +piwik_configuration = data_bag_item("web", "piwik").to_hash.reject do |k, _| ["chef_type", "data_bag", "id"].include?(k) end rails_port "www.openstreetmap.org" do - ruby node[:web][:ruby_version] + ruby node[:passenger][:ruby_version] directory rails_directory user "rails" group "rails"