An Overview Of IIS 7.5 Feature - Server Certificates

Enabling SSL will make browser and server communication secure and prevent eavesdropping, tampering, and message forgery. It is recommended to have SSL or HTTPS binding on pages that contain sensitive information like passwords or financial data.

You can see my previous articles on IIS 7.5 Feature:
Let’s open IIS 7.5 manager and check whether Server Certificates module is present or not under IIS section as shown below:

server
Let’s select server node, double-click on Server Certificates and understand its settings:

settings

We can click on Import link for importing existing certificate [.pfx]. In general, this certificate file will be issued by CA like Verisign, GoDaddy.

pfx

We can create a certificate request by clicking on “Create Certificate Request” and filling details like common name [URL], organization etc.

Request

Fill the details and click on Next and select cryptographic provider and bit length:

provider

Click Next and give a file name to save the details. We can share this file with CA and get the certificate.

After getting the certificate, we can complete the request and use certificate by clicking on “Complete Certificate Request”:

Request

We can create a domain certificate, that doesn’t require any external CA to issue it. We need to have a server that acts as a CA within your domain to create it.

Click on “Create Domain Certificate” and enter necessary details:

Create

Click Next and select the server by clicking on Select, which will search for a CA server within windows domain.

domain

We can create a self-signed certificate for testing SSL locally without a need of valid certificate from CA.

Click on “Create Self-signed Certificate” and gave a name to it:

Create

Let’s use it in our default web site by going to its bindings, add HTTPS binding and select certificate as shown below:

bindings

Let’s browse it over HTTPS, which shows a warning due to self-signed certificate. This can be ignored and clicking  on “continue to this website” will show our web page:

error

We can use SSLDiag for troubleshooting certificate related issues. I am ending things here on Server Certificates, I hope this article will be helpful for all.
 
Read more articles on IIS:


Similar Articles