Posted on Sunday, 31st May 2009 by Balazs
To add an SSL cert to IIS 5 on Windows, you need two separate steps:
Create a p12 (pkcs12) cert file:
cat server.key server.crt > server.pem
openssl pkcs12 -export -in server.pem -out server.p12 -name “server”
Import the p12 file into IIS:
Start->Run->mmc
Ctrl+M
Add…
Certificates
Computer Account
Finish
Close
OK
Open “Certificates (Local Computer)” tree
Right click Certificates
All Tasks->Import…
Browse to .p12 cert
Next
Next
Next
Finish
Select cert for site
Open IIS Admin
Select properties of [...]
Tags: Certificates, SSL
Posted in Windows | Comments (Comments)