Reputation: 923
We published our application to Azure Web App via Azure Dev Ops. When we SFTP into the Web App we can only see hostingstart.html, yet side loads and we can see proper files in Kuded and App Service Editor. There is only 1 deployment slot in our Azure Web App. How is that possible
Upvotes: 0
Views: 316
Reputation: 156
Check if WEBSITE_RUN_FROM_PACKAGE is set to "1" in application settings. This setting doesn't extract the package content to the D:\home\site\wwwroot directory of your app. Instead, it uploads the ZIP file as-is to D:\home\data\SitePackages, and creates a packagename.txt in the same directory, that contains the name of the ZIP package to load at runtime.
See: learn.microsoft.com/en-us/azure/app-service/deploy-run-package
Upvotes: 3