how can godaddy install a managed certificate on azure

Andreas Fellner 0 Reputation points
2025-03-21T08:48:30.95+00:00

Hallo,

I bought a "managed" SSL certificate from GoDaddy, which has to be installed on my custom domain www.aipoma.com, which is hosted on Microsoft Azure. How can GoDaddy access the hosting environment to install the certificate?

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,654 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Alekhya Vaddepally 585 Reputation points Microsoft External Staff
    2025-03-21T15:53:54.09+00:00

    Hi Andreas Fellner,
    To install a managed SSL certificate from GoDaddy on your custom domain hosted on Microsoft Azure, you can follow these steps:

    1. After your certificate request is approved, download the certificate from the GoDaddy SSL manager.
    2. If the certificate is not already in .pfx format, you will need to convert it. You can use OpenSSL to convert the certificate files (.pem, .crt, .key) to a .pfx file. Here is a command you can use:   
    openssl pkcs12 -inkey yourkey.pem -in yourcert.crt -export -out yourcert.pfx
    
    1. Sign in to your Azure portal and navigate to your App Service. Under the "Settings" section, click on "SSL certificates" and then "Upload Certificate". Browse and select your .pfx file, enter the password you set during the conversion, and click "Submit".
    2. After uploading the certificate, you need to bind it to your custom domain. In the SSL settings, click "Add binding", select your hostname and the uploaded certificate, choose "SNI SSL" for SSL Type, and click "Add Binding".
    3. Use tools like SSL Labs to verify that the SSL certificate is correctly installed and your site is accessible via HTTPS.

    Manually install an SSL certificate on my Microsoft Azure Web App

    If the answer is helpful, please click Accept Answer and kindly upvote it so that other people who faces similar issue may get benefitted from it.

    Let me know if you have any further Queries.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.