2021-02-03 16:09:17 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
# This file is used by Rack-based servers to start the application.
|
|
|
|
|
2019-01-16 07:09:29 -05:00
|
|
|
require ::File.expand_path('../config/environment', __FILE__)
|
2012-12-28 13:11:28 -05:00
|
|
|
|
2019-08-12 05:49:01 -04:00
|
|
|
def master_process?
|
2021-05-26 05:11:02 -04:00
|
|
|
Prometheus::PidProvider.worker_id == 'puma_master'
|
2019-08-12 05:49:01 -04:00
|
|
|
end
|
|
|
|
|
2017-12-28 08:55:34 -05:00
|
|
|
warmup do |app|
|
|
|
|
client = Rack::MockRequest.new(app)
|
|
|
|
client.get('/')
|
|
|
|
end
|
|
|
|
|
2012-12-28 13:11:28 -05:00
|
|
|
map ENV['RAILS_RELATIVE_URL_ROOT'] || "/" do
|
2018-02-07 09:44:05 -05:00
|
|
|
use Gitlab::Middleware::ReleaseEnv
|
2012-12-28 13:11:28 -05:00
|
|
|
run Gitlab::Application
|
|
|
|
end
|