mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
cd5520b948
Fix rbenv not being able to export to upstart via foreman
25 lines
639 B
Ruby
25 lines
639 B
Ruby
worker_processes Integer(ENV['UNICORN_WORKERS'] || 3)
|
|
timeout 30
|
|
preload_app true
|
|
|
|
listen ENV['UNICORN_PORT']
|
|
listen ENV['UNICORN_SOCKET']
|
|
|
|
before_fork do |server, worker|
|
|
Signal.trap 'TERM' do
|
|
puts 'Unicorn master intercepting TERM and sending myself QUIT instead'
|
|
Process.kill 'QUIT', Process.pid
|
|
end
|
|
|
|
defined?(ActiveRecord::Base) and
|
|
ActiveRecord::Base.connection.disconnect!
|
|
end
|
|
|
|
after_fork do |server, worker|
|
|
Signal.trap 'TERM' do
|
|
puts 'Unicorn worker intercepting TERM and doing nothing. Wait for master to send QUIT'
|
|
end
|
|
|
|
defined?(ActiveRecord::Base) and
|
|
ActiveRecord::Base.establish_connection
|
|
end
|