Anish Karunakaran
Anish Karunakaran

Reputation: 987

How to use HTTPS in Azure Web API

Currently my application url coresponds to HTTP only. How can I make it compatible with HTTPS also.. Can I do that specifically to single service only.

Upvotes: 0

Views: 1295

Answers (1)

Kirill Karahainko
Kirill Karahainko

Reputation: 232

For first you should upload your SSL certificate through Azure Management panel (.pfx with private key) and attach it to your cloud service or web site.

Then setup HTTPS endpoint for your WEB API web role within your Azure cloud project, there you should also define SSL certificate thumbprint.

Regards.

Upvotes: 1

Related Questions