Hi Andreas Fellner,
To install a managed SSL certificate from GoDaddy on your custom domain hosted on Microsoft Azure, you can follow these steps:
- After your certificate request is approved, download the certificate from the GoDaddy SSL manager.
- 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
- 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".
- 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".
- 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.