trabajo-afectivo/config/puma.rb

15 lines
403 B
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
workers Integer(ENV['WEB_CONCURRENCY'] || 0)
2016-03-17 10:58:42 +00:00
threads_count_min = Integer(ENV['MIN_THREADS'] || 5)
threads_count_max = Integer(ENV['MAX_THREADS'] || 30)
2016-03-17 10:58:42 +00:00
threads threads_count_min, threads_count_max
environment ENV.fetch('RAILS_ENV', 'development')
2016-03-17 10:58:42 +00:00
preload_app!
on_worker_boot do
ActiveRecord::Base.establish_connection
end