What is the difference between an Azure Web Site and an Azure Web Role

前端 未结 10 862
抹茶落季
抹茶落季 2020-11-22 12:49

What are the material differences between the new Azure Web Sites and the traditional Azure Web Roles for an ASP.NET MVC application? What reason would I choose a \"web sit

10条回答
  •  天涯浪人
    2020-11-22 13:29

    Azure Web Role is like a virtual private host. You get a VM that acts as your web server, and you own that VM instance.

    Azure Web Sites are like an elastic shared hosting service. You deploy your app to a web server that is not controlled by you and which also servers other users' sites. You can scale your site up and down (at some extra charge) to make it more elastic as your resource needs shift.

提交回复
热议问题