aboutsummaryrefslogtreecommitdiffstats
path: root/config.ru
blob: 5ff2a9090b5d05883d65b2508a24c09c64577e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require ::File.expand_path('../config/environment',  __FILE__)

# Unicorn self-process killer
require 'unicorn/worker_killer'

# Max requests per worker
use Unicorn::WorkerKiller::MaxRequests, 3072, 4096

# Max memory size (RSS) per worker
use Unicorn::WorkerKiller::Oom, (144*(1024**2)), (256*(1024**2))

run Aclog::Application