mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# When including this gem, we also initialize the patch / override classes in the gem.
|
|
require 'gitlab-http'
|
|
|
|
Gitlab::HTTP_V2.configure do |config|
|
|
config.allowed_internal_uris = [
|
|
(Gitlab.config.gitlab.protocol == 'https' ? URI::HTTPS : URI::HTTP).build(
|
|
host: Gitlab.config.gitlab.host,
|
|
port: Gitlab.config.gitlab.port
|
|
),
|
|
URI::Generic.build(
|
|
scheme: 'ssh',
|
|
host: Gitlab.config.gitlab_shell.ssh_host,
|
|
port: Gitlab.config.gitlab_shell.ssh_port
|
|
)
|
|
]
|
|
|
|
config.log_exception_proc = ->(exception, extra_info) do
|
|
Gitlab::ErrorTracking.log_exception(exception, extra_info)
|
|
end
|
|
config.silent_mode_log_info_proc = ->(message, http_method) do
|
|
Gitlab::SilentMode.log_info(message: message, outbound_http_request_method: http_method)
|
|
end
|
|
config.log_with_level_proc = ->(log_level, message_params) do
|
|
Gitlab::AppJsonLogger.public_send(
|
|
log_level,
|
|
message_params.merge(caller: Gitlab::BacktraceCleaner.clean_backtrace(caller))
|
|
)
|
|
end
|
|
end
|
|
|
|
if Gitlab.config.gitlab['http_client'].present?
|
|
pem = File.read(Gitlab.config.gitlab['http_client']['tls_client_cert_file'])
|
|
password = Gitlab.config.gitlab['http_client']['tls_client_cert_password']
|
|
|
|
Gitlab::HTTP_V2::Client.pem(pem, password)
|
|
end
|