Method: Honeybadger::Config#ca_bundle_path

Defined in:
lib/honeybadger/config.rb

#ca_bundle_pathObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



212
213
214
215
216
217
218
219
220
# File 'lib/honeybadger/config.rb', line 212

def ca_bundle_path
  if self[:"connection.system_ssl_cert_chain"] && File.exist?(OpenSSL::X509::DEFAULT_CERT_FILE)
    OpenSSL::X509::DEFAULT_CERT_FILE
  elsif self[:"connection.ssl_ca_bundle_path"]
    self[:"connection.ssl_ca_bundle_path"]
  else
    local_cert_path
  end
end