Publish Multiple Projects to Different Locations on Azure Website

Go to the Configure tab for the site in Azure portal. Scroll all the way to the bottom then add a new application where ever you want like Project2 below. Basically the ‘Project2’ part is the URL after the root “https://stackoverflow.com/” and the ‘site\wwwroot\Project2’ is where the actual folder should live under the site root … Read more

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

Web Roles give you several features beyond Web Apps (formerly Web Sites): Ability to run elevated startup scripts to install apps, modify registry settings, install performance counters, fine-tune IIS, etc. Ability to split an app up into tiers (maybe Web Role for front end, Worker Role for backend processing) and scale independently Ability to RDP … Read more