lakers009 发表于 2017-12-28 12:56:59

IIS7 配置ssl证书 多域名绑定443端口

  IIS7下多个子域名同时配置https协议,但IIS7默认支持单个443端口造成端口冲突;
  解决方案:先把每个域名配置不同的端口 例:444,445,446等
  然后在:C:\Windows\system32\inetsrv\config\applicationHost.config
  找到
  <binding protocol="https" bindingInformation="*:443" />
  <binding protocol="https" bindingInformation="*:444" />
  <binding protocol="https" bindingInformation="*:445" />
  修改成:
  <binding protocol="https" bindingInformation="*:443:www.domain.com" />
  <binding protocol="https" bindingInformation="*:443:www.domain.com" />
  <binding protocol="https" bindingInformation="*:443:www.domain.com" />
  切记需要对应的每个站点都修改。
  然后在iis的站点上重新选择下证书,重启iis站点。
页: [1]
查看完整版本: IIS7 配置ssl证书 多域名绑定443端口