I have a scenario where I want to Host an ASP.NET MVC Web API application, and a single-page Website Project on the same URL.
Essentially, host the website on http://localhost/, and the API on http://localhost/api/.
In IIS, this is as simple as setting up an Application sub folder, and pointing it to the files on disk. In OWIN, I am unsure how to achieve this scenario.
I have a console application that will serve as the Web Host, and it's currently hosting the WebAPI application using the methods found in this code: SelfHostWebApiWithOwinAndUnity
Can anyone help?