Reputation: 9704
I have developed a .net web api.
I will be hosting it on azure app service. How to configure IP based rate limit via azure app service?
For example so that say upto 1000 requests per day can be made into the api from each IP address.
Upvotes: 0
Views: 4145
Reputation: 424
Unfortunately you cannot achieve it just with plain App service. You have to onboard your api to Azure API management and set throttling policies. Here you can find more information about that.
Upvotes: 5