mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
14 lines
318 B
Ruby
14 lines
318 B
Ruby
workers Integer(ENV['WEB_CONCURRENCY'] || 2)
|
|
threads_count = Integer(ENV['MAX_THREADS'] || 5)
|
|
threads threads_count, threads_count
|
|
|
|
preload_app!
|
|
|
|
rackup DefaultRackup
|
|
port ENV['PORT'] || 3000
|
|
environment ENV['RACK_ENV'] || 'development'
|
|
|
|
on_worker_boot do
|
|
ActiveRecord::Base.establish_connection
|
|
end
|