Multiple SSL secured site on IIS7

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’

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s