2011-10-08 17:36:38 -04:00
|
|
|
# This file is used by Rack-based servers to start the application.
|
|
|
|
|
2014-01-23 12:24:31 -05:00
|
|
|
if defined?(Unicorn)
|
2013-12-22 05:08:43 -05:00
|
|
|
require 'unicorn'
|
2013-12-18 07:49:09 -05:00
|
|
|
|
2015-05-27 22:56:35 -04:00
|
|
|
if ENV['RAILS_ENV'] == 'production' || ENV['RAILS_ENV'] == 'staging'
|
|
|
|
# Unicorn self-process killer
|
|
|
|
require 'unicorn/worker_killer'
|
|
|
|
|
2016-01-20 05:52:01 -05:00
|
|
|
min = (ENV['GITLAB_UNICORN_MEMORY_MIN'] || 300 * 1 << 20).to_i
|
|
|
|
max = (ENV['GITLAB_UNICORN_MEMORY_MAX'] || 350 * 1 << 20).to_i
|
2016-01-20 05:49:42 -05:00
|
|
|
|
2015-05-27 22:56:35 -04:00
|
|
|
# Max memory size (RSS) per worker
|
2016-01-20 05:49:42 -05:00
|
|
|
use Unicorn::WorkerKiller::Oom, min, max
|
2015-05-27 22:56:35 -04:00
|
|
|
end
|
2013-12-20 11:30:34 -05:00
|
|
|
end
|
2017-05-23 10:09:00 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
require ::File.expand_path('../config/environment', __FILE__)
|
2012-12-28 13:11:28 -05:00
|
|
|
|
|
|
|
map ENV['RAILS_RELATIVE_URL_ROOT'] || "/" do
|
|
|
|
run Gitlab::Application
|
|
|
|
end
|