X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/860431223d5e1ada6bc6549c2cfa30dea4d23182..036734d15e6cd4fbc57e031ceca870f6c90e53bf:/roles/web-frontend.rb diff --git a/roles/web-frontend.rb b/roles/web-frontend.rb index 2a316491a..2549e98dc 100644 --- a/roles/web-frontend.rb +++ b/roles/web-frontend.rb @@ -15,14 +15,19 @@ default_attributes( }, :logstash => { :forwarder => { - "filebeat.prospectors" => [ - { "input_type" => "log", "paths" => ["/var/log/apache2/access.log"], "fields" => { "type" => "apache" } }, - { "input_type" => "log", "paths" => ["/var/log/web/rails-logstash.log"], "fields" => { "type" => "rails" } } + "filebeat.inputs" => [ + { "type" => "filestream", "id" => "apache", "paths" => ["/var/log/apache2/access.log"], "fields" => { "type" => "apache" }, "fields_under_root" => true }, + { "type" => "filestream", "id" => "rails", "paths" => ["/var/log/web/rails-logstash.log"], "fields" => { "type" => "rails" }, "fields_under_root" => true } ] } }, :memcached => { - :memory_limit => 4096 + :memory_limit => 8192 + }, + :networking => { + :firewall => { + :http_rate_limit => "s:5/sec:30" + } }, :passenger => { :max_pool_size => 50 @@ -33,14 +38,12 @@ default_attributes( :messages => { :comment => "messages.openstreetmap.org", :domains => ["messages.openstreetmap.org"], - :command => "/usr/local/bin/passenger-ruby /srv/www.openstreetmap.org/rails/script/deliver-message $local_part", + :command => "/usr/local/bin/deliver-message $local_part", :user => "rails", :group => "rails", :home_directory => "/srv/www.openstreetmap.org/rails", :path => "/bin:/usr/bin:/usr/local/bin", - :environment => { - "RAILS_ENV" => "production" - } + :case_sensitive => true } } }