设为首页 加入收藏

TOP

IIS7 配置ssl证书 多域名绑定443端口
2017-10-11 16:18:15 】 浏览:387
Tags:IIS7 配置 ssl 证书 域名 绑定 443 端口

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

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

然后在:C:\Windows\system32\inetsrv\config\applicationHost.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绿色集成环境在云服务器上的应.. 下一篇在Windows Server2016里通过Hyper..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目