zoukankan      html  css  js  c++  java
  • IIS服务器多域名证书绑定443端口解决方案

    一个服务器IIS要绑定多个HTTPS站点(该方法在此之前,有进行测试其他网站域名的ssl证书,测试没有问题)

    默认情况一个服务器的IIS只能绑定一个HTTPS也就是443端口

    要实现多个站点对应HTTPS只能更改IIS配置

    首先把每个站点分配多个不同端口,如443.444.445…(证书一定要是多域的)

    然后在:C:Windowssystem32inetsrvconfigapplicationHost.config

    找到

    <binding protocol=”https” bindingInformation=”*:443″ />

    ? <binding protocol=”https” bindingInformation=”*:444″ />

    <binding protocol=”https” bindingInformation=”*:445″ />

    修改成:

    <binding protocol=”https” bindingInformation=”*:443:yuming” />

    <binding protocol=”https” bindingInformation=”*:443:yuming” />

    <binding protocol=”https” bindingInformation=”*:443:yuming” />

    切记需要对应的每个站点都修改。

    tips:没有测试过

  • 相关阅读:
    心慌慌
    辛苦了
    [转]家庭长寿秘方:夫妻关系之守则。
    无题
    浮躁
    [转]樱木花道9大缺点
    一票难求
    Excel录入数据,自动记录当前时间点
    Excel数据透视表基本使用
    linux下tomcat7虚拟目录配置
  • 原文地址:https://www.cnblogs.com/hycms/p/6209258.html
Copyright © 2011-2022 走看看