@Carlescu, Dragos Thanks for reaching here!
If Parking page is showing this means there is no war file existing on the file system, or we App Service can’t find it to run. Additionally, there is a possibly a war or war-folder context exists, but the method being used to deploy did not let the platform appropriately unpack to /usr/local/tomcat/webapps/[context]
.
For deployments using .war
files, validate that:
- If
/home/site/wwwroot
or/home/site/wwwroot/webapps
is being used. Check thewar
is actually under one of these two paths. If both of the above file system locations exist, then only one (1) of these locations should be used and the other deleted. - Check if the same context name is appearing under
/usr/local/tomcat/webapps/[context]
within the container. - Validate that if using
/home/site/wwwwroot/[war].war
that/home/site/wwwroot/webapps/ROOT
exists with appropriate expanded contents underROOT
Validate that if using/home/site/wwwwroot/[war].war
that/home/site/wwwroot/webapps/[context]
exists with appropriate expanded contents under[context]
You may refer to this detailed blog for details-
Tomcat deployments on App Service - War file location, behavior and troubleshooting
Please let us know if further query or issue remains.