IIS 10 绑定选项
IIS 10 Binding Options
我正在尝试在 windows Server 2016 Standard edition
IIS10
上进行网络托管,我使用 Windows PowerShell 安装了 windows IIS,我在之前的版本上成功配置,即 Windows 服务器 2012 标准。
有 net.tcp
和 net.pipe
选择选项,而不是 http
和 https
根据 Whosebug 参考:我发现以下 link,但我无法重新安装 IIS 服务器。
很久以前有人问过这个问题,但我认为我应该 post 我的解决方案,因为它占用了相当多的时间。
如果你导航到 applicationHost.config,我的在 C:\Windows\System32\inetsrv\Config 下。打开它并确保您在 listenerAdapters 下看到 http。
<listenerAdapters>
<add name = "https"/>
</listenerAdapters>
解决方案来自 https://forums.iis.net/t/1177049.aspx?Problems+creating+a+new+site
我正在尝试在 windows Server 2016 Standard edition
IIS10
上进行网络托管,我使用 Windows PowerShell 安装了 windows IIS,我在之前的版本上成功配置,即 Windows 服务器 2012 标准。
有 net.tcp
和 net.pipe
选择选项,而不是 http
和 https
根据 Whosebug 参考:我发现以下 link,但我无法重新安装 IIS 服务器。
很久以前有人问过这个问题,但我认为我应该 post 我的解决方案,因为它占用了相当多的时间。
如果你导航到 applicationHost.config,我的在 C:\Windows\System32\inetsrv\Config 下。打开它并确保您在 listenerAdapters 下看到 http。
<listenerAdapters>
<add name = "https"/>
</listenerAdapters>
解决方案来自 https://forums.iis.net/t/1177049.aspx?Problems+creating+a+new+site