|
|
|
The assumption is that you have TWO files: the PrivateKey and the Certificate. You would COMBINE both private key and certificate into a single file using the OpenSSL command:
openssl pkcs12 -in a.crt -inkey a.key -export -out a.pfx
where:
a.crt = certificate
a.key = private key
a.pfx = resulting PFX file (containing BOTH the key and cert)
a.pfx is a single file that contains both your private key and certificate file.
To import the PFX file into the IIS server:
- Click Start, then Run, then type "mmc"
- In the MMC click File, then Add / Remove Snap In
- Click Add in the dialog box that opens
- On the Console, expand the Certificates container, then right click Personal
- Select All Tasks, then Import
- Point the File Browse at the PFX file and complete the wizard
- In IIS go to your site and select Properties, then Directory Security
- Click Server Certificate and then Assign an Existing Certificate, select the correct certificate from the available certificates
|
Provide Feedback  |
|