Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi @Asterix Solutions
This issue usually happens when you are using the Azure App Service Free (F1) tier and the daily CPU quota limit gets exceeded. In the Free tier, Azure provides 60 CPU minutes per day per region per subscription, and this limit is shared across all Free web apps running in the same region. Once the quota is consumed, Azure automatically stops the web apps and you will see the “Error 403 – Web app is stopped (Quota exceeded)” message. Normally, the quota resets automatically at midnight UTC, after which the app should start working again, although sometimes a manual restart or temporary scale-up to a paid tier may be required to bring the app back to the running state. To avoid this issue in the future, you can monitor the CPU Time metric in the App Service Monitoring section, stop or remove unused Free tier apps in the same region, or consider upgrading the App Service Plan to a Basic or higher tier, which removes the daily CPU usage restriction.
https://learn.microsoft.com/en-us/azure/app-service/overview-hosting-plans
https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/azure-subscription-service-limits
Let me know if you have any further assistances needed.