Reputation: 550
My team wants to deploy an Azure App Service that's running a React frontend and a Python Flask backend in a Linux environment. I've seen a thread stating that virtual applications and directories are unavailable for Linux. I heard that using custom storage is an alternative approach to allowing multiple applications to run on the same App Service.
If it's not a viable alternative, then what would be?
Upvotes: 0
Views: 1114
Reputation: 16238
I recently answered a similar question here
TL;DR: Instead of relying on virtual directories, you can host each of your application on its own, dedicated App Service. To save costs, multiple App Services can share the same App Service Plan (the underlying compute)
Upvotes: 1
Reputation: 3398
Currently, virtual application is not supported for Linux environment on Azure.
Here is some supported links:
Upvotes: 1