I can deploy Angular to Azure Web Apps on Linux service plan and it works fine when hitting {myapp}.azurewebsites.net/index.html
I can navigate inside the app as expected.
When hitting the root {myapp}.azurewebsites.net it just displays the hostingstart.html.
It does not help to remove the hostingstart.html as suggested in some articles.
If I try to hit a sub page url directly (like {myapp}.azurewebsites.net/mypage) then I get an error : Cannot GET /mypage (this works when I run locally)
I suspect that i need to setup a default page, but i cannot find this anywhere in the Application Settings in the Azure Web App. (I think this is only available on Windows service plans - not on Linux Service Plans).
How do i deploy properly to Linux App Service for this to work ?
I have found a lot of articles on the issue, but they all seem to cover Windows App Service Plan.