Reputation: 181
I have developed a web application using .net mvc and WebAPI as follows:
SOLUTION
|—— WEB.API Project
|—— Web Application Project
wanting to deploy to my web server. It is possible to deploy both projects on a single web site (in iis)?
Do I need to create two separate sites for the web application and web api (in iis)?
Upvotes: 0
Views: 21
Reputation: 81
Deploy your mvc web app as an web site & add a virtual directory under that web site & point your web api. This is the way to use 2 application under an web site.
Upvotes: 0