Reputation: 323
I have an Azure Web Role with an SSL endpoint configured using a certificate obtained from my companies Active Directory Certificate Authority, and an Azure Web App that needs to connect to this Web Role over SSL. As the Web App cannot verify the CA for the Web Roles SSL cert, the connection fails.
How can I trust my CA from within the Azure Web App? If it were a full Windows Instance, the CA certificate would be added to the Trusted Certificate Authority store, so how do I do this with an Azure Web App?
Upvotes: 3
Views: 5033
Reputation: 2258
Unfortunately, you cannot add a certificate to the trusted certificate authority on an Azure Web App. The security implications would be quite bad if that were possible.
However, what you can do is override the framework code for SSL verification to include your particular cert (for example in .NET this would be ServicePointManager.ServerCertificateValidationCallback). This stack overflow question and answer shows how to do that for .NET: How to call the default certificate check when overriding ServicePointManager.ServerCertificateValidationCallback in C#?
Upvotes: 4