Magnus_P
Magnus_P

Reputation: 127

Bluemix scalable container group custom domain SSL certificate

Ok, I have finally managed to get my node.js container up and running using a scalable container group and a custom domain.

The problem that now remains is: How do you get the self-signed certificate to be used by Bluemix when accessing the app through https://my-app.mydomain.com?

Https works, but it shows the wildcard *.mybluemix.net certificate instead of the one I added to the domain that I added to my organisation. Visiting https://my-app.mybluemix.net is ok since then the wildcard mybluemix.net certificate is valid.

Yes, I have seen this one as well as read the SSL part of the Bluemix docs.

developerWorks: SSL Certificates and Bluemix Custom Domains

Upvotes: 1

Views: 225

Answers (1)

jimmc
jimmc

Reputation: 585

Your DNS should use an A record pointing to 75.126.81.68. This IP address is used by Bluemix for SSL traffic in the US-South region.

If you are using an A record with 75.126.81.66 or use a CNAME record pointing to your app's route (e.g. my-app.mybluemix.net), then you will see the *.mybluemix.net certificate instead of your custom certificate that you uploaded to Bluemix and associated to your custom domain.

Upvotes: 3

Related Questions