Hi @Hill Abrahams
If your Azure web application is returning a 403 error due to exceeding quota limits, it usually means the app has surpassed its resource limits.
- Review the quotas for your App Service plan. Free or Shared plans have specific limits on CPU, memory, bandwidth, and filesystem usage. Exceeding these can cause a 403 error.
- Use the Azure portal to monitor resource usage like CPU, memory, and bandwidth to identify any spikes or high usage.
- If the app frequently exceeds its quotas, consider upgrading to a higher tier (Basic, Standard, or Premium) with increased resource limits.
- Optimize your application code and configuration to reduce resource usage. This may involve reducing memory consumption, optimizing database queries, or implementing caching.
- Configure alerts in the Azure portal to notify you when the app is nearing its resource limits so you can take proactive measures.
- Check application logs for additional details or patterns that explain why quotas are being exceeded.
Refer the document.
Azure App Service quotas and metrics
Resolve errors for resource quotas
Let me know if you have any further queries.