Files
ubicloud/puma_config.rb
2025-05-15 02:18:07 +09:00

17 lines
288 B
Ruby

# frozen_string_literal: true
# :nocov:
environment ENV["RACK_ENV"] || "development"
port ENV["PORT"] || "3000"
threads 15, 15
if @config.options[:workers] > 0
silence_single_worker_warning
preload_app!
before_fork do
Sequel::DATABASES.each(&:disconnect)
end
end
# :nocov: