eBooru/config.ru
2019-10-18 19:19:47 -07:00

17 lines
473 B
Ruby

# This file is used by Rack-based servers to start the application.
if defined?(Unicorn) && ENV["RAILS_ENV"] == "production"
# Unicorn self-process killer
require 'unicorn/worker_killer'
# Max requests per worker
use Unicorn::WorkerKiller::MaxRequests, 5_000, 10_000
# Max memory size (RSS) per worker
use Unicorn::WorkerKiller::Oom, (192*(1024**2)), (256*(1024**2))
end
require ::File.expand_path('../config/environment', __FILE__)
run Rails.application