debian-mirror-gitlab/config.ru

33 lines
925 B
Plaintext
Raw Normal View History

2014-09-02 18:07:02 +05:30
# This file is used by Rack-based servers to start the application.
if defined?(Unicorn)
require 'unicorn'
2015-09-11 14:41:01 +05:30
if ENV['RAILS_ENV'] == 'production' || ENV['RAILS_ENV'] == 'staging'
# Unicorn self-process killer
require 'unicorn/worker_killer'
2018-05-09 12:01:36 +05:30
min = (ENV['GITLAB_UNICORN_MEMORY_MIN'] || 400 * 1 << 20).to_i
max = (ENV['GITLAB_UNICORN_MEMORY_MAX'] || 650 * 1 << 20).to_i
2016-01-29 22:53:50 +05:30
2015-09-11 14:41:01 +05:30
# Max memory size (RSS) per worker
2016-01-29 22:53:50 +05:30
use Unicorn::WorkerKiller::Oom, min, max
2015-09-11 14:41:01 +05:30
end
2018-12-23 12:14:25 +05:30
# Monkey patch for fixing Rack 2.0.6 bug:
# https://gitlab.com/gitlab-org/gitlab-ee/issues/8539
Unicorn::StreamInput.send(:public, :eof?) # rubocop:disable GitlabSecurity/PublicSend
2014-09-02 18:07:02 +05:30
end
require ::File.expand_path('../config/environment', __FILE__)
2018-03-17 18:26:18 +05:30
warmup do |app|
client = Rack::MockRequest.new(app)
client.get('/')
end
2014-09-02 18:07:02 +05:30
map ENV['RAILS_RELATIVE_URL_ROOT'] || "/" do
2018-03-27 19:54:05 +05:30
use Gitlab::Middleware::ReleaseEnv
2014-09-02 18:07:02 +05:30
run Gitlab::Application
end