Sha256: a8b2d9793fa058516033a0c240453a3a125f4ab31044e3e718a0c5d67a288050

Contents?: true

Size: 721 Bytes

Versions: 1

Compression:

Stored size: 721 Bytes

Contents

environment ENV['RAILS_ENV']

threads ENV['THREADS_MIN'].to_i, ENV['THREADS_MAX'].to_i
workers ENV['WORKERS'].to_i

if ENV['RAILS_ENV'] == 'development' || ENV['RAILS_ENV'] == 'test'
  bind 'tcp://0.0.0.0:3000'
else
  bind "unix:#{ENV['RUN_STATE_PATH']}/#{ENV['SERVICE']}"
end

pidfile "#{ENV['RUN_STATE_PATH']}/#{ENV['SERVICE']}.pid"

worker_timeout 30

stdout_redirect "#{ENV['LOG_PATH']}/#{ENV['SERVICE']}.access.log",
                "#{ENV['LOG_PATH']}/#{ENV['SERVICE']}.error.log"

preload_app!

restart_command 'bundle exec puma'

on_worker_boot do
  defined?(ActiveRecord::Base) and
    ActiveRecord::Base.connection.disconnect!

  defined?(ActiveRecord::Base) and
    ActiveRecord::Base.establish_connection
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
orats-0.9.2 lib/orats/templates/includes/new/rails/config/puma.rb