Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
856 views
in Technique[技术] by (71.8m points)

ssl - How can I trust an Active Directory Root CA Certificate in an Azure Web Application?

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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#?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...