Here are some basic simple steps to convert a PFX file to a format that your apache server on linux will understand , you only need openssl installed on your server for this to work ok.
Move your PFX file to the Apache server. To convert the .pfx file to a file that your Apache server will understand Run the following command using OPENSSL: 1. To export the Private key file from the .pfx file openssl pkcs12 -in filename.p12 -nocerts -out privatekey.key 2. To export the Certificate file from the .pfx file openssl pkcs12 -in filename.p12 -clcerts -nokeys -out sslcert.crt |