Heroku ssl team says my domains do not have a certificate installed

I just want to say that this is usually not what I do, but I was recently instructed ... I have carefully watched the geelu documentation to configure SSL , but I still run into a problem.

I added my certificate to the hero using the following command:

heroku certs:add path_to_crt path_to_key 

This part seems to work. I get a message with the message:

 Adding SSL Endpoint to my_app ... done 

I also installed a CNAME for my hosting service to point to the endpoint associated with the cert command above. However, when I browse the site, I still get an SSL error message. He says my certificate is not trusted and points to the * .heroku.com license, not the one I just downloaded.

I noticed that when I execute the following command:

 heroku ssl 

I get the following:

 my_domain_name has no certificate 

My assumption is that at the moment there should be a certificate associated with this domain.

Any ideas?

Edit: It looks like I didn’t wait long enough for the certificate material to leak through the Internet ... however, my question about the "heroku ssl" command still puzzles me.

+4
source share
1 answer

The Heroku ssl team is for obsolete certificates:

 $ heroku ssl -h Usage: heroku ssl list legacy certificates for an app 

You need a heroku certs team that will output the appropriate certificate information for this project.

0
source

Source: https://habr.com/ru/post/1439941/


All Articles