您好我在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想要显示禁止。有人可以帮我测试吗?任何帮助,将不胜感激。谢谢