Configuring IIS for SSL
The most common way of securing web traffic is to use SSL encryption. SSL signs and encrypts traffic between a web server and client in a way that is difficult for an outsider to view, change, or impersonate. If you have ever purchased something online, the web page that accepted your credit card details was likely encrypted using SSL.
In this recipe we will cover how to configure an IIS site to use SSL encryption.
Getting ready
Two things are required to use SSL encryption: a certificate capable of encrypting SSL traffic and a website configured to support SSL. If the website will be publicly facing, it is suggested you use an SSL certificate from a public Certificate Authority that is by default trusted by most web browsers.
How to do it...
Carry out the following steps to configure IIS for SSL:
Request an SSL certificate from your Certificate Authority.
Install the certificate in the
Certificates (Local Computer)\Personal\Certificates
store. Assuming you are using an...