Reputation: 2842
Just wondering what are the requirements of a server to be able to host and run MVC 5 applications.
I saw a post that said it was recommended that they use windows server 2012 R2
SO the questions I am asking is
what OS? How much memory? How many cores? is 2 preferred over 1? or does it make any difference?
Upvotes: 0
Views: 8658
Reputation: 13179
There is no specific requirements on MVC 5 except for .NET 4.5 and IIS to be installed on the machine. MVC libraries do not even need to be installed on the server considering that MVC 5 apps can provide the relevant MVC 5 libraries during deployment.
Upvotes: 2