I am running into an issue when uploading my SSL certificate to Azure. I have a premium certificate from GoDaddy that has been running in IIS for the past year. As we are migrat
I had a similar issue using the "https://portal.azure.com" trying the approach "App Service - "your app service" - ssl certificates - upload certificate"
When I tried to upload a certificate PFX file nothing happend, no error message, nothing.
The workaround I found was to re-generate the PFX file using openssl and this time add a short and simple password.
"openssl pkcs12 -export -out certificate.pfx -inkey privkey.pem -in cert.pem -certfile chain.pem"
Hope this helps