3

ASP.NET 站点使用 IIS 中的 ARR(应用程序请求路由)进行负载平衡。对应的 URL 重写规则放在applicationHost.config中。

有没有办法在新的配置文件中分离这个规则?configSource不再支持该标签。我阅读了有关childSource标签的信息,但仅在部分中受支持。

这是applicationHost.config中的规则:

<system.webServer>
        <rewrite>
            <globalRules>
                <rule name="ARR_TestFarm_loadbalance" patternSyntax="Wildcard" stopProcessing="true">
                    <match url="*" />
                    <action type="Rewrite" url="http://TestFarm/{R:0}" />
                </rule>
            </globalRules>
        </rewrite>
</system.webServer>
4

1 回答 1

1

我敢打赌,您正在发生的事情是您希望在测试/本地开发和生产/部署场景之间有不同的配置设置。

我通常使用配置转换来实现这一点,并且效果很好。是这样的:

你的app.config文件基本上变成了一个模板。对于给出的示例,您的示例可能如下所示:

...
<system.webServer>
        <rewrite>
            <globalRules>
                <rule>
                </rule>
            </globalRules>
        </rewrite>
</system.webServer>
...

然后,创建另一个文件,将其命名为app.local.config

<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
    <system.webServer>
            <rewrite>
                <globalRules>
                    <rule xdt:Transform="Replace">
                        <!-- local rule -->
                    </rule>
                </globalRules>
            </rewrite>
    </system.webServer>
</configuration>
...

和另一个文件,称为app.release.config

...
<system.webServer>
        <rewrite>
            <globalRules>
                <rule xdt:Transform="Replace" name="ARR_TestFarm_loadbalance" patternSyntax="Wildcard" stopProcessing="true">
                    <match url="*" />
                    <action type="Rewrite" url="http://TestFarm/{R:0}" />
            </rule>
            </globalRules>
        </rewrite>
</system.webServer>
...

您可以在此处找到转换文档:https://docs.microsoft.com/en-us/previous-versions/dd465326(v=vs.100)

VS 在转换文件时内置了一些规则,但 IIRC 仅适用于 web.configs。添加 FastKoala 将允许 app.config 转换以及在构建时转换它们的能力,https ://marketplace.visualstudio.com/items?itemName=JonDaviswijitscom.FastKoala-WebAppconfigXMLtransforms

于 2018-12-04T21:21:31.960 回答