Skip to content

Instantly share code, notes, and snippets.

@erhangundogan
Last active August 29, 2015 14:14
Show Gist options
  • Select an option

  • Save erhangundogan/75c45dcc4876ec7cae13 to your computer and use it in GitHub Desktop.

Select an option

Save erhangundogan/75c45dcc4876ec7cae13 to your computer and use it in GitHub Desktop.
heroku ssl usage
heroku addons:add ssl:endpoint
openssl genrsa -out privatekey.pem 1024
openssl req -new -key privatekey.pem -out certrequest.csr
openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem
heroku certs:add certificate.pem privatekey.pem 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment