zoukankan      html  css  js  c++  java
  • IIS7 配置ssl证书 多域名绑定443端口

     IIS7下多个子域名同时配置https协议,但IIS7默认支持单个443端口造成端口冲突;

    解决方案:先把每个域名配置不同的端口 例:444,445,446等

    然后在:C:Windowssystem32inetsrvconfigapplicationHost.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站点。

  • 相关阅读:
    PHP
    PHP
    密码修改机制
    PHP
    PHP
    PHP
    PHP
    Java并发编程:进程和线程的由来(转)
    Java获取文件大小的正确方法(转)
    J2EE开发中常用的缓存策略
  • 原文地址:https://www.cnblogs.com/chenminli/p/6385745.html
Copyright © 2011-2022 走看看