嗨,我已经在 Angular 中开发了 SPA Web 应用程序。我正在使用 VS2017,我正在使用 MVC 模板。我已经在 azure 中部署了我的应用程序。我的项目也有一些服务器端代码。我添加了以下策略来限制对我的 Web 应用程序的并发请求。下面是我在 web.config 中添加的代码。我在 localhost:1148 运行我的项目
<security>
<dynamicIpSecurity denyAction="Forbidden">
<denyByRequestRate enabled="true" maxRequests="4" requestIntervalInMilliseconds="2000"/>
<denyByConcurrentRequests enabled="true" maxConcurrentRequests="4"/>
</dynamicIpSecurity>
</security>
我想测试在 localhost 中应用的上述规则。我想知道是否可以在 localhost 中测试上述规则?当有超过 4 个并发请求时,O 想要显示禁止。有人可以帮我测试一下吗?任何帮助,将不胜感激。谢谢