Sha256: 695e35c6648057a155aa0b43599d7b5199608111de2c45823eeff9e03487b080
Contents?: true
Size: 809 Bytes
Versions: 8
Compression:
Stored size: 809 Bytes
Contents
# frozen_string_literal: true workers ENV.fetch('WEB_CONCURRENCY') { 0 }.to_i threads_count = ENV.fetch('RAILS_MAX_THREADS') { 5 }.to_i threads threads_count, threads_count environment ENV.fetch('RAILS_ENV') { 'development' } if %w[production staging].include?(ENV['RAILS_ENV']) pidfile 'tmp/pids/puma.pid' state_path 'tmp/pids/puma.state' daemonize ActiveModel::Type::Boolean.new.cast(ENV.fetch('RAILS_DAEMONIZE') { false }) if ENV['PORT'] bind "tcp://0.0.0.0:#{ENV['PORT']}" else bind 'unix://tmp/sockets/puma.sock' end else port ENV.fetch('PORT') { 3000 }.to_i end before_fork do ActiveRecord::Base.connection.disconnect! end on_worker_boot do ActiveSupport.on_load(:active_record) do ActiveRecord::Base.establish_connection end end preload_app! plugin :tmp_restart
Version data entries
8 entries across 8 versions & 2 rubygems