0

I am wondering which certificates bundle does httpi is using?

I am using centOS 5 that has ca-bundle.crt under /etc/pki/tls/certs/ca-bundle.crt

It seems that openSSL is using the above ca-bundle but httpi is not ?

ConfusedUser
  • 351
  • 1
  • 4
  • 14

2 Answers2

1

HTTP Client has their own certificates bundled into it. See Issue #187.

This can be set using http_client.ssl_config.set_default_paths to use the system certificates

jww
  • 97,681
  • 90
  • 411
  • 885
ConfusedUser
  • 351
  • 1
  • 4
  • 14
0

httpi is only a wrapper around a locally installed http client package. It uses whatever this underlying package is using.

Steffen Roller
  • 3,464
  • 25
  • 43