gpt4 book ai didi

azure - Azure 中的 DynamicIpSecurity 错误重定向

转载 作者:行者123 更新时间:2023-12-01 16:03:38 27 4
gpt4 key购买 nike

我在 Azure 中使用 DynamicIpSecurity 配置了我的 Web 应用程序像这样的功能:

      <dynamicIpSecurity denyAction="Forbidden">
<denyByConcurrentRequests enabled="true" maxConcurrentRequests="20" />
<denyByRequestRate enabled="true" maxRequests="30" requestIntervalInMilliseconds="1000" />
</dynamicIpSecurity>

编辑:我还有 HttpErros 的自定义页面:

<system.webServer>
<httpErrors errorMode="Custom">
<remove statusCode="403"/>
<remove statusCode="500"/>
<remove statusCode="404"/>
<error statusCode="404" path="/404.html" responseMode="Redirect"/>
<error statusCode="403" path="/403.html" responseMode="Redirect"/>
<error statusCode="500" path="/500.html" responseMode="Redirect"/>
</httpErrors>
...
</system.webServer>

但问题是它将我的应用程序重定向到 Azure 的插槽 URL,例如:

https://my-application__9fb0/403.html

虽然应该是

https://myapplication.com/403.html

这给出了“网页不可用”。

是否可以配置重定向 URL?如果不是我应该做什么?

最佳答案

因此 DIPR 配置返回 403 状态,但似乎您有自定义错误页面 (403.html),并且您尚未发布如何为您的站点配置该页面。如果您不介意分享您的网站名称,我可以研究一下如何为您的网站配置此名称。您可以按照说明here如果您不想公开分享您的网站名称。

关于azure - Azure 中的 DynamicIpSecurity 错误重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31537465/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com