Reputation: 38499
In my solution, I have one MVC app which I'll host on www.domain.com
I also have one Web API project, which will be hosted on api.domain.com
Is it possible to deploy these to one (for penny-pinching reasons) App Service, or are they (and should be) separate?
Upvotes: 1
Views: 517
Reputation: 1810
With Azure App Service (except the free and shared tiers), you don't pay per app but per server in a App Service Plan. Thanks to that, you can for example deploy 42 apps in the same App Service Plan for the same price than 1 app.
App Service pricing page can be found at https://azure.microsoft.com/en-us/pricing/details/app-service/
I hope this helps. Regards,
Upvotes: 6