Sha256: 03f380808e9098ae5907fe7e4d6b194ffba2fec1f62a3cfa2241f7f3837f4480

Contents?: true

Size: 845 Bytes

Versions: 10

Compression:

Stored size: 845 Bytes

Contents

# frozen_string_literal: true

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------

threads_count = Integer(ENV['RAILS_MAX_THREADS'] || 5)
threads threads_count, threads_count

rails_env = ENV.fetch('RAILS_ENV') { 'development' }
environment rails_env
port ENV.fetch('PORT') { 3000 }

preload_app! unless rails_env == 'development'

plugin :tmp_restart

unless Puma.jruby? || Puma.windows? # workers supported
  workers Integer(ENV['WEB_CONCURRENCY'] || 2)

  before_fork do
    ActiveRecord::Base.connection_pool.disconnect!
  end

  on_worker_boot do
    ActiveRecord::Base.establish_connection
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fat_free_crm-0.20.1 config/puma.rb
fat_free_crm-0.20.0 config/puma.rb
fat_free_crm-0.19.2 config/puma.rb
fat_free_crm-0.19.0 config/puma.rb
fat_free_crm-0.18.2 config/puma.rb
fat_free_crm-0.17.3 config/puma.rb
fat_free_crm-0.18.1 config/puma.rb
fat_free_crm-0.18.0 config/puma.rb
fat_free_crm-0.17.2 config/puma.rb
fat_free_crm-0.17.1 config/puma.rb