Umbraco -> Azure DevOps -> Azure App Service help:...
# help-with-umbraco
j
Hi! I've run into issues when deploying from AzDo to Azure App Service where, at the final moment of potential success, I'm greeted with "HTTP Error 500.30 - ASP.NET Core app failed to start" I've included my Build pipeline, which then triggers a Release pipeline, using the "Deploy Azure App Service" (also included). The build itself has moved across successfully, confirmed through the Kudu debug console - I've included an
ls
of the files found at wwwroot (notably 'media' is missing, if that's relevant). Anyway, I would humbly request guidance in the endeavor of "Deployment". Forum post: https://our.umbraco.com/forum/using-umbraco-and-getting-started/108288-getting-http-error-50030-after-successful-publishing-to-azure#comment-346829 TY! Rich
Update: it's an issue about missing /media/ folder:
Copy code
\> dotnet UmbracoBasic01.dll
Unhandled exception. System.IO.DirectoryNotFoundException: C:\home\site\wwwroot\wwwroot\media\
...so if anyone has any advice on that then please send it!
d
What does the web.config look like? In particular: what is the processpath set to in azure?
I get this error 9 out of 10 times because the processpath is set to something like 'bin/net6/debug/mywebsite.exe'
s
It sounds like either a permissions issue or the directory
\wwwroot\wwwroot\media\
needs to be created (though I'd say that Umbraco should create that one, so it's possibly a permissions problem). Linux or Windows?