We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f24257b commit 164912bCopy full SHA for 164912b
lib/pact/hal/http_client.rb
@@ -50,6 +50,8 @@ def perform_request request, uri
50
http = Net::HTTP.new(uri.host, uri.port, :ENV)
51
http.set_debug_output(output_stream) if verbose
52
http.use_ssl = (uri.scheme == 'https')
53
+ http.ca_file = ENV['SSL_CERT_FILE'] if ENV['SSL_CERT_FILE'] && ENV['SSL_CERT_FILE'] != ''
54
+ http.ca_path = ENV['SSL_CERT_DIR'] if ENV['SSL_CERT_DIR'] && ENV['SSL_CERT_DIR'] != ''
55
http.start do |http|
56
http.request request
57
end
0 commit comments