I deployed .net core 6 project in Web App(Linux, which is up and running and when I see the log stream, I can see below logs
when I created the Web App(f1) used following Properties
Even as I selected "Code" instead of Container, why Web App running in container ? What's the difference between selection "Code" and "Container" as Publishing model.
And Kudo also showing "This site can’t be reached ERR_TIMED_OUT",
Azure App Service for Linux by default uses Linux container to host the web apps, hence those container logs can be seen in Log stream. It won't be same with windows web apps.
Windows:
What's the difference between selection "Code" and "Container" as Publishing model.
1. Publish mode: Code
2. Publish mode: Container
When you deploy web app choosing code as publish mode, you can see deployment logs and status in deployment center=>logs:
When you select Container as publish mode, the logs will be as shown below:
As it can be seen in your logs, it couldn't find the manifest file.
To resolve this,
WEBSITES_PORT
& value=8080
.