Reputation: 3217
Please provide detailed steps to setup IIS6 could not found good information by googling... Is there free SSL certificates that can be used only to test locally?
Upvotes: 1
Views: 338
Reputation: 3217
I am now using IISExpress to test SSL which is super easy.... steps to setup : * just run web platform installer * configure to run in iis6 compatibily mode but its not true IIS 6 :)
Upvotes: 0
Reputation: 34418
Open a command prompt; go to C:\Program Files\IIS Resources\SelfSSL
and
selfssl /T /N:CN=localhost /V:365
This will generate a self-signed certificate for https://localhost/ and offer to install it for you in each web site on your system. This will also add it to your trusted certificate store so that IE will automatically accept the certificate. The /V
option is the number of days the certificate will be valid for, i.e. roughly a year.
If you want to use https://your-machine-name/ instead of localhost then just change or omit the /N:
option. If not the first you can specify which specific site using /S:
. And there are other options avialable to configure the key generation if you need them.
Normally when you install an SSL certificate in IIS you'd also need to iisreset
before it'll work but SelfSSL takes care of this too.
Upvotes: 1