Home > Mobile >  How and where should I add my SSL certificate
How and where should I add my SSL certificate

Time:08-18

Good day all, am wondering if I should add my SSL certificate in my node.js server(app.js) or do I add it once I deploy it to heroku using the heroku cli? Or do I add the certificate in both places?

CodePudding user response:

When deploying on heroku, regardless of tier, you automatically get a SSL certificate on your domain, no need to add SSL to your nodejs app.

More info here.

  • Related