I am using Visual Studio Team Services to release my LARAVEL Project to Azure. On the Azure application setting and by default to virtual directory it sets : "/" as "site\wwwroot" (1)
But with the Laravel Framework the application is accessible from "http://PATH\public" When I set "/" as "site\wwwroot\public" I can access to my application.
But if I made a new release, I have to remove "public" from the path setting (1) during the release and add it after. If I am not doing that, the new release will be published at "site\wwwroot\public\public"
I would like to automate the process and not every release, have to remove "public" and add it after
I have tested also a Azure powershell task but it is not working. Does anyone as solution to share please ?