lexeme
lexeme

Reputation: 2973

ASP.NET MVC intranet site deployment

Howcome I deploy my intranet ASP.NET MVC project?

What I've got so far:

It should be mentioned that though it's odd and unusual but server is just a machine without (even) server OS installed. Please note that it's not mine idea and is the environment I've got at the moment

I've read the instruction http://msdn.microsoft.com/en-us/library/gg703322(VS.98).aspx but it describes situation when you have Web Developer installed on the same machine.

Please help! And Thanks!

Upvotes: 0

Views: 2147

Answers (1)

ntziolis
ntziolis

Reputation: 10221

This is the 100% manual approach, you might be able to access the remote web server via VS if authorization/permissions is lined up properly (much simpler, basically you just hit deploy):

  1. Install IIS
  2. Install .NET Framework 4
  3. Install MVC
  4. Register ASP.NET with IIS (just to be safe run it again)
  5. Create Website via IIS Management Console (use a new directory for the website)
  6. Put your files inside the new directory
  7. Make sure permissions are setup properly
  8. That's it

Upvotes: 1

Related Questions