IIS使用Tip
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IIS使用Tip相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
IIS URL 重写 Default.aspx 而不是 Slash
PLSQL Developer 11 使用技巧(持续更新)
如何在 typescript 2.0 中使用 d3-tip 的类型
003_vim使用tip
android studio使用tip
android-tip-关于SurfaceView的使用