Create PFX
How to Create a PFX File from CER/KEY Files
Categories:
At the moment, we only support .pfx
file for custom certificates. If you have a different format, you can convert it to .pfx
using the following command:
openssl pkcs12 -export -out cdm-server.pfx -inkey example.key -in example.cer -certfile fullchain.cer
Where:
- example.key: Your private key file.
- example.cer: Your certificate file.
- fullchain.cer: The additional CA certificate chain.