Let’s say that you have
- an IIS7 webserver running
- Microsoft Dynamics CRM is running on your webserver
- And there’s another site running on the same webserver.
- And both site are internet facing and need to be SSL secured
IIS Management Console doesn’t give you the possibility to do that.
You used to do this in IIS6 using adsutil.vbs
cscript.exe adsutil.vbs set /w3svc/<replace with your site id>/SecureBindings “:443:www.domain1.com”
IIS7 support is now delivering this option:
C:\Windows\System32\inetsrv>appcmd set site /site.name:”<Replace with your site name>” /+bindings.[protocol=’https’,bindingInformation=’*:443:<replace with your url>’]
Good configin’