IIS使用Tip
2024-08-16 01:35:25 219人阅读
1. IIS7 HTTPS 绑定主机头
IIS7下面默认HTTPS绑定是无法指定主机头的,但我们可以通过手工修改IIS配置来实现主机头绑定。
打开C:\Windows\system32\inetsrv\config\applicationHost.config 定位到如下位置: <bindings> <binding protocol="https" bindingInformation="*:443" /> <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.console.com" /> </bindings> 找到https的配置项目,修改为: <binding protocol="https" bindingInformation="*:443:www.console.com" /> 注意这里的www.console.com要换成你自己的域名,之后保存即可。 |
IIS使用Tip
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉:
投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。