1

I have found multiple mentions of piggyback-SSL on the Internet, which means all your Heroku applications on *.herokuapp.com can be accessible with HTTPS.

However, I'm trying to write an Alexa skill, and to do that, I need the contents of the .pem file; i have no idea how piggyback-SSL works, and how I can get the contents of the .pem file.

Parham Doustdar
  • 2,019
  • 3
  • 22
  • 41

1 Answers1

1

It's unlikely you'd be able to get your hands on this as the .pem file would include the private key which Heroku will be keeping secret.

You'll need to get your own SSL certificate and install it on your application. When you have your own SSL certificate and private key, you can generate your own pem file.

https://devcenter.heroku.com/articles/ssl

How to get .pem file from .key and .crt files?

Community
  • 1
  • 1
Max Woolf
  • 3,988
  • 1
  • 26
  • 39