Reputation: 79
i am having issue in configuring SSL on cloud app. i do the following steps in sequence
i import the .crt file in certificate manager console (certmgr.msc)
export the file in cer format.
can any one help me out how i configure SSL on cloud app.
regards, Zeeshan
Upvotes: 1
Views: 642
Reputation: 4178
I followed the following step process when I was setting up SSL in Azure using GoDaddy as CA:
There are a few different ways to create the CSR file. I used IIS Manager on my local developer computer.
You can read an extended version of the list here where all the steps are more thoroughly explained.
Upvotes: 1
Reputation: 668
Have you checked the requirements for uploading and using certificate on windows azure? The requirements is:
Upvotes: 0
Reputation: 15850
As Gaurav mentioned, in step 6, you want to export the certificate and include private key. This will generate a .PFX file and ask you to provide a password.
Furthermore, when you have the .PFX file - you will want to take care as to where you upload it to. Make sure that you upload it to Certificates area under the Web Role - the portal should ask you for a password to the .PFX file.
Management Certificates area that expects .CER files is not the right place to upload SSL certificates to. I am guessing it is likely where uploaded the .CER file from step 6
Upvotes: 1