IIS实现HTTPS的主机名绑定

 默认情况下,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!


上一篇: IIs7.5隐藏X-Powered-By信息
下一篇: Visual Studio 2013 各个版本的产品密钥
文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: iis
相关日志:
评论: 0 | 引用: 0 | 查看次数: 246
发表评论
昵 称:
密 码: 游客发言不需要密码.
邮 箱: 邮件地址支持Gravatar头像,邮箱地址不会公开.
网 址: 输入网址便于回访.
内 容:
验证码:
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 1000 字 | UBB代码 开启 | [img]标签 关闭

 广告位

↑返回顶部↑