Hi @Charan Kumar Kharade Somoji Rao,
It seems like your Django app isn’t loading properly on Azure App Service, consider the following steps to troubleshoot:
- Go to the Deployment Center in the Azure portal and look at the logs to make sure the container image was pulled successfully and is running.
- Sometimes, a simple restart can fix unexpected issues.
- heck for any coding errors by navigating to your App Service in the Azure portal, then go to Diagnose and solve problems and look at the Application logs.
- Make sure all necessary connection details, like those for your database are correctly set in the App Service's application settings.
- Double-check that managed identity is turned on for the App Service and is being used properly in the Deployment Center.
- Ensure a webhook is configured in the Azure Container Registry, so your App Service can automatically pull the latest container image.
- If you're using Azure Container Apps, verify that ingress is configured to allow external traffic.
By following these steps, you should be able to pinpoint what's going wrong and get your Django app up and running.
References:
Troubleshoot deployment
Troubleshoot start failures in Azure Container Apps
Hope this information is helpful, let me know if you have any further queries.