構成ファイルで IIS バインディングを更新できますか? 6 つのサーバーがあり、それらの間でバインドを同期する必要があります。
私の仕事を容易にするアイデアはありますか?ありがとう。
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/bindings