更新配置文件中的IIS绑定,而不是GUI

时间:2012-05-06 05:00:01

标签: iis iis-7

我可以在配置文件中更新IIS绑定吗?我有六台服务器,需要在它们之间同步绑定。

你有什么想法来完成我的任务吗?谢谢。

1 个答案:

答案 0 :(得分:3)

您确定可以在Web服务器的ApplicationHost.config(而不是Web.Config)中使用Bindings / Binding元素直接设置多个绑定,但请确保设置站点具体,以便绑定反映对特定站点的正确设置:

<site name="Contoso" id="2">
  <application path="/" applicationPool="Contoso">
     <virtualDirectory path="/" physicalPath="C:\inetpub\wwwroot" />
  </application>
  <bindings>
    <binding protocol="http" bindingInformation="192.168.0.1:443:www.contoso.com" />
    <binding protocol="https" bindingInformation="*:443:" />
  </bindings>
</site>

更多信息: http://www.iis.net/ConfigReference/system.applicationHost/sites/site/bindings/binding