默认绑定 <bindings>
概述
<bindings>
元素可为所有 IIS 7 网站配置默认绑定信息。
此元素可以包含 <binding>
元素集合。 集合中的每个元素都定义一组单独的绑定信息,请求可使用这些信息来联系网站。 例如,如果你的站点要求用户同时使用 HTTP 协议和 HTTPS 协议进行联系,则必须为每个协议定义一个绑定。
还可以在 <site>
元素的 <bindings>
元素中使用 <clear />
元素来覆盖从服务器级别 <siteDefaults>
元素继承的绑定默认值。
兼容性
版本 | 说明 |
---|---|
IIS 10.0 | <bindings> 元素在 IIS 10.0 中未进行修改。 |
IIS 8.5 | <bindings> 元素在 IIS 8.5 中未进行修改。 |
IIS 8.0 | <bindings> 元素在 IIS 8.0 中未进行修改。 |
IIS 7.5 | <bindings> 元素在 IIS 7.5 中未进行修改。 |
IIS 7.0 | <bindings> 元素是在 IIS 7.0 中引入的。 |
IIS 6.0 | <bindings> 集合取代了 IIS 6.0 IIsWebServer 元数据库对象上 ServerBindings 属性的部分。 |
安装
<bindings>
元素包含在 IIS 7 的默认安装中。
操作方式
如何为服务器配置站点默认值
打开 Internet Information Services (IIS) 管理器:
如果使用的是 Windows Server 2012 或 Windows Server 2012 R2:
- 在任务栏上,单击“服务器管理器”,单击“工具”,然后单击“Internet Information Services (IIS)管理器”。
如果使用的是 Windows 8 或 Windows 8.1:
- 按住 Windows 键,按字母 X,然后单击“控制面板”。
- 单击“管理工具”,然后双击“Internet Information Services (IIS)管理器”。
如果使用的是 Windows Server 2008 或 Windows Server 2008 R2:
- 在任务栏上,单击“开始”,指向“管理工具”,然后单击“Internet Information Services (IIS)管理器”。
如果使用的是 Windows Vista 或 Windows 7:
- 在任务栏上,单击“开始”,然后单击“控制面板”。
- 双击“管理工具”,然后双击“Internet Information Services (IIS)管理器”。
在“连接”窗格中,展开服务器名称,然后单击“站点”节点。
在“网站默认值”对话框中,为所有网站指定默认选项,然后单击“确定”。
配置
可以为服务器添加一个 <bindings>
元素,其中可包含一组单独的 <binding>
元素,用于定义服务器的默认协议绑定。 还可以在 <site>
元素的 <bindings>
元素中使用 <clear />
元素来覆盖从服务器级别 <siteDefaults>
元素继承的绑定默认值。
特性
无。
子元素
元素 | 说明 |
---|---|
binding |
可选元素。 配置默认绑定。 |
clear |
可选元素。 清除默认绑定集合。 |
配置示例
以下配置示例指定 IIS 7 的默认 bindings
选项。
<system.applicationHost>
<sites>
<siteDefaults>
<bindings>
<binding protocol="http" bindingInformation="127.0.0.1:8080:" />
</bindings>
</siteDefaults>
</sites>
</system.applicationHost>
代码示例
以下代码示例配置 IIS 7 的默认 bindings
选项。
AppCmd.exe
appcmd.exe set config -section:system.applicationHost/sites /siteDefaults.bindings.[protocol='http',bindingInformation='*:8080:contoso.com'].bindingInformation:"127.0.0.1:8080:" /commit:apphost
注意
使用 AppCmd.exe 配置这些设置时,必须确保将 commit 参数设置为 apphost
。 这会将配置设置提交到 ApplicationHost.config 文件中的相应位置部分。
C#
using System;
using System.Text;
using Microsoft.Web.Administration;
internal static class Sample
{
private static void Main()
{
using (ServerManager serverManager = new ServerManager())
{
Configuration config = serverManager.GetApplicationHostConfiguration();
ConfigurationSection sitesSection = config.GetSection("system.applicationHost/sites");
ConfigurationElement siteDefaultsElement = sitesSection.GetChildElement("siteDefaults");
ConfigurationElementCollection bindingsCollection = siteDefaultsElement.GetCollection("bindings");
ConfigurationElement bindingElement = bindingsCollection.CreateElement("binding");
bindingElement["protocol"] = @"http";
bindingElement["bindingInformation"] = @"127.0.0.1:8080:";
bindingsCollection.Add(bindingElement);
serverManager.CommitChanges();
}
}
}
VB.NET
Imports System
Imports System.Text
Imports Microsoft.Web.Administration
Module Sample
Sub Main()
Dim serverManager As ServerManager = New ServerManager
Dim config As Configuration = serverManager.GetApplicationHostConfiguration
Dim sitesSection As ConfigurationSection = config.GetSection("system.applicationHost/sites")
Dim siteDefaultsElement As ConfigurationElement = sitesSection.GetChildElement("siteDefaults")
Dim bindingsCollection As ConfigurationElementCollection = siteDefaultsElement.GetCollection("bindings")
Dim bindingElement As ConfigurationElement = bindingsCollection.CreateElement("binding")
bindingElement("protocol") = "http"
bindingElement("bindingInformation") = "127.0.0.1:8080:"
bindingsCollection.Add(bindingElement)
serverManager.CommitChanges()
End Sub
End Module
JavaScript
var adminManager = new ActiveXObject('Microsoft.ApplicationHost.WritableAdminManager');
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST";
var sitesSection = adminManager.GetAdminSection("system.applicationHost/sites", "MACHINE/WEBROOT/APPHOST");
var siteDefaultsElement = sitesSection.ChildElements.Item("siteDefaults");
var bindingsCollection = siteDefaultsElement.ChildElements.Item("bindings").Collection;
var bindingElement = bindingsCollection.CreateNewElement("binding");
bindingElement.Properties.Item("protocol").Value = "http";
bindingElement.Properties.Item("bindingInformation").Value = "127.0.0.1:8080:";
bindingsCollection.AddElement(bindingElement);
adminManager.CommitChanges();
VBScript
Set adminManager = WScript.CreateObject("Microsoft.ApplicationHost.WritableAdminManager")
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST"
Set sitesSection = adminManager.GetAdminSection("system.applicationHost/sites", "MACHINE/WEBROOT/APPHOST")
Set siteDefaultsElement = sitesSection.ChildElements.Item("siteDefaults")
Set bindingsCollection = siteDefaultsElement.ChildElements.Item("bindings").Collection
Set bindingElement = bindingsCollection.CreateNewElement("binding")
bindingElement.Properties.Item("protocol").Value = "http"
bindingElement.Properties.Item("bindingInformation").Value = "127.0.0.1:8080:"
bindingsCollection.AddElement(bindingElement)
adminManager.CommitChanges()