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?
Please provide detailed steps to setup IIS6 could not found good information by googling…
Share
Open a command prompt; go to
C:\Program Files\IIS Resources\SelfSSLandThis 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
/Voption 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
iisresetbefore it’ll work but SelfSSL takes care of this too.