Table of Contents / Create the Intermediate CA / Create a localhost Server Certificate / Import Into IIS
-
CD into the Intermediate directory:
cd C:\Certificates\DoD\CA\Intermediate
-
Create the PFX file:
In order for you to import your certificates into a windows server (like IIS), you will need to create a PKCS #12 archive.
openssl pkcs12 -export -in public/localhost.cer -inkey private/localhost.key -out pfx/localhost.pfx
-
Import PFX into IIS:
In order to enable SSL in IIS, you need to import the localhost certificate into IIS.
-
Require PKI to access the website:
Step Figure In IIS, in the Connections
pane...Click on the website: Double-click on SSL Settings
Check Require SSL
and underClient certificates:
select theRequire
radio button
The website should now prompt you for PKI each time you visit, just add your PKI you created under the Signing tutorial to Google Chrome and select it when prompted.
Table of Contents / Create the Intermediate CA / Create a localhost Server Certificate / Import Into IIS