Win Server 2008 R2 IIS 默认只能添加一个 443 HTTPS 端口,更换证书

1、问题:

Win Server 2008 R2 IIS 默认只能添加一个 443 HTTPS 端口,更换证书

 

解决方案:

方法一:
然后在:C:\Windows\system32\inetsrv\config\applicationHost.config
找到 对应网站

<binding protocol="http" bindingInformation="*:80:api.xxx.com" />

在其下方添加 如下
<binding protocol="https" bindingInformation="*:443:api.xxx.com" />

即可
 
 
 
2、更换证书
采用IP地址
Win Server 2008 R2 IIS 默认只能添加一个 443 HTTPS 端口,更换证书

 

 

 

Win Server 2008 R2 IIS 默认只能添加一个 443 HTTPS 端口,更换证书

上一篇:《操作系统导论》第5章 | 进程API


下一篇:Spring怎么引入多个xml配置文件