Forum Discussion
AsimKhan2023
Mar 31, 2024Brass Contributor
Deploying SaaS application in Azure
Hi,
So I made a SaaS application where the frontend is in Vue, the backend is in Node Js, and the database is in MySql. I require some of the following to complete the deployment:
A Blob Storage account
A domain for the landing page
Subdomains for the APIs, the front end, and the landing page
The traffic to the application will grow slowly after a period of 6 to 8 months. How can I deploy this application over to Azure?
Kindly please guide me on how I can achieve this.
Regards,
Asim Khan
22 Replies
Sort By
- AsimKhan2023Brass ContributorI am trying to implement something like this
https://learn.microsoft.com/en-us/azure/architecture/example-scenario/multi-saas/multitenant-saas- peiyezhuBronze Contributormade a SaaS application where the frontend is in Vue, the backend is in Node Js,
Looks nice.
I have no idea about how to run nodejs backend under this environment.- AsimKhan2023Brass ContributorMy plan is to
First create an app service and deploy the node.js application and connect it with the MySQL DB, configure the settings for the DB connection.
Then create another app service and deploy the Vue.js application into that app service, update the APIs to connect with the backend node.js application.
Then create and Azure Front Door and deploy the frontend application into the AFD.
Let me know your thoughts.
- AsimKhan2023Brass ContributorThank you all, I am going to apply these methods and process and hopefully will be able to get it through using front door
It may depend on how comprehensive on your landing page design, Azure Blob can act as a static website itself:
https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blob-static-website-host
- AsimKhan2023Brass ContributorKidd_Ip
Is there a way to host a dynamic website, with database into Azure Blob storage account?
Regards,
Asim Khan- peiyezhuBronze ContributorHost a static website on Blob Storage
https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blob-static-website-host
The Blob Storage only host static website rather than interactive website.