An Azure service that provides customers with a serverless container experience.
Thank you for the update — I’m really glad to hear your web app is accessible again!
Based on the screenshots you shared earlier, the key message was that the container “did not start within the expected time limit of 230 seconds.” This isn’t usually the root cause itself, but a symptom that the container took longer than expected to initialize and respond to Azure’s internal health check. The platform automatically retried and eventually recovered the instance — which is why it started working again without any changes from our side.
To help prevent this from recurring, here are a few targeted recommendations:
- Increase container startup timeout Add the application setting WEBSITES_CONTAINER_START_TIME_LIMIT with a value of 600 (or up to 1800 seconds). This gives your container more time to start.
Reference : https://learn.microsoft.com/en-us/azure/app-service/reference-app-settings?tabs=kudu%2Cdotnet
- Verify port configuration Ensure your app is listening on the correct port (default 80) or set WEBSITES_PORT if using a different one.
- Enable detailed logging Turn on Application logging (Filesystem) under Monitoring > App Service logs for better startup visibility next time.
Since the application is now working as expected, we can consider this issue resolved. However, if the problem returns or you’d like me to review the latest logs/diagnostics, just let me know the web app name and I’ll take a look.
Thank you again for your patience and cooperation!
If the answer(explanation) is helpful, Please do click "Accept the answer” and Yes, this can be beneficial to other community members.
If you have any other questions, let me know in the "comments" and I would be happy to help you