0

I can type

export SSL_CERT_FILE=/Users/MyComputer/Desktop/certificate.crt

to get my open SSL working as expected on OSX, what should I do to make this permanent? Put that line in .bash_profile ? just put the certificate in a magic place?

doptimusprime
  • 9,115
  • 6
  • 52
  • 90
pingu
  • 8,719
  • 12
  • 50
  • 84
  • Same question here http://apple.stackexchange.com/questions/76115/where-is-ruby-looking-for-ssl-cert-file – pingu Nov 04 '13 at 13:04

1 Answers1

1

Do you want permanent for a particular user or for all the user?

For a particular user, edit $(HOME)/.bash_profile by putting this line there.

For all, edit /etc/paths.

This question might help you.

Community
  • 1
  • 1
doptimusprime
  • 9,115
  • 6
  • 52
  • 90