logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

puma.rb (415B)


  1. threads_count = ENV.fetch('MAX_THREADS') { 5 }.to_i
  2. threads threads_count, threads_count
  3. if ENV['SOCKET'] then
  4. bind 'unix://' + ENV['SOCKET']
  5. else
  6. port ENV.fetch('PORT') { 3000 }
  7. end
  8. environment ENV.fetch('RAILS_ENV') { 'development' }
  9. workers ENV.fetch('WEB_CONCURRENCY') { 2 }
  10. preload_app!
  11. on_worker_boot do
  12. ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
  13. end
  14. plugin :tmp_restart