I purchased certificate from godaddy and currently I have the following files
- xxx.crt
- xxx.pem
- xxx.p7b
- generated-csr.txt
- generated-private-key.txt
I am having a hardtime setting it up in my azure web app, it requires me to upload .pfx (Private Key Certificates)
I tried openssl
openssl pkcs12 -export -out {name}.pfx -inkey generated-private-key.txt in xxx.crt
It says unable to load private key, is there any process needed to create private key using that generated-private-key.txt ?
UPDATE: Resolved the issue using this reference https://medium.com/@joshyates1980/apply-ssl-t0-azure-web-application-8cc72d886993