IIS7在启用HTTPs后无法指定主机名的, 可以通过手工修改IIS7的主机配置文件方式来指定。
打开C:\Windows\system32\inetsrv\config\applicationHost.config
找到如下位置:
...
<binding protocol="https" bindingInformation="*:443:" />
...
把*:443:,修改为:
<binding protocol="https" bindingInformation="*:443:你的域名" />