• IIS7 HTTPS 绑定主机头,嘿嘿,转


     

     

    IIS7下面默认HTTPS绑定是无法指定主机头的,但我们可以通过手工修改IIS配置来实现主机头绑定。


    打开C:Windowssystem32inetsrvconfigapplicationHost.config


    定位到如下位置:
    <bindings>
    <binding protocol="https" bindingInformation="*:443" />
    <binding protocol="http" bindingInformation="*:80:abc.demo.com" />
    </bindings>


    找到https的配置项目,修改为:

    <binding protocol="https" bindingInformation="*:443:abc.demo.com" />


    注意这里的abc.demo.com要换成你自己的域名,之后保存即可。

    NOI-001—《C++编程及竞赛训练》 NOI-002—《普及组竞赛强化训练课程》 NOI-003—《初级算法课程》
  • 相关阅读:
    字符串哈希
    codeforces#766 D. Mahmoud and a Dictionary (并查集)
    莫比乌斯反演模板
    马拉车模板
    codeforces#580 D. Kefa and Dishes(状压dp)
    1076E
    448C
    543A
    295B
    poj3974 Palindrome
  • 原文地址:https://www.cnblogs.com/fphuang/p/6071230.html
Copyright © 2020-2023  润新知