码迷,mamicode.com
首页 > Web开发 > 详细

IIS实现HTTPS的主机名绑定

时间:2019-01-09 15:02:02      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:iis   http   prot   bind   pip   实现   oca   windows   解决   

默认情况下,IIS中HTTPS 绑定是无法指定主机名的
解决办法:通过手工修改 IIS 配置来实现主机头绑定。打开如下位置的文件。

C:\Windows\system32\inetsrv\config\applicationHost.config

找到节点

<bindings>
    <binding protocol="net.tcp" bindingInformation="808:*" />
    <binding protocol="net.pipe" bindingInformation="*" />
    <binding protocol="net.msmq" bindingInformation="localhost" />
    <binding protocol="msmq.formatname" bindingInformation="localhost" />
    <binding protocol="http" bindingInformation="*:80:www.xxxxxx.com" />
    <binding protocol="https" bindingInformation="*:443:" />
</bindings>

更改为你的域名

<binding protocol="https" bindingInformation="*:443:www.xxxxxx.com" />

ok!

技术分享图片

 

IIS实现HTTPS的主机名绑定

标签:iis   http   prot   bind   pip   实现   oca   windows   解决   

原文地址:https://www.cnblogs.com/zhangyouwu/p/10244158.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!