I have tried searching for this online, but could not find an approach that works. There are a few helpful links to host a Web API but nothing related to a full fledged MVC app that consists of Controllers and Views. Azure currently does not have built in support for this. Hence, wondering if this is something doable.
1 Answer
It is possible to achieve this through the use of Custom Handlers. This blog post goes into further detail on how to create a custom handler. Do note that this feature is currently in preview so support is limited.
2 Comments
Hemant Singh
Thanks Tom! The blog link was really helpful. They have explained custom handler for a webapi app, but with a few more code changes, I was able to get it to run an MVC app. If I get some time, I'll document the steps somewhere if anyone needs this info in future.
cidthecoatrack
@HemantSingh - have you been able to document that process?