9 lines
172 B
Ruby
9 lines
172 B
Ruby
# frozen_string_literal: true
|
|
|
|
OpenIDConnect.http_config do |config|
|
|
config.response :jwt
|
|
|
|
if ENV['http_proxy'].present?
|
|
config.proxy = ENV['http_proxy']
|
|
end
|
|
end
|