Alex Stephens
Alex Stephens

Reputation: 3096

Azure subdomains with different solutions

I have 3 different MVC solutions:

Customers site

Admin site

Businesses site


i wish to have them as:

www.mysite.com

admin.mysite.com

business.mysite.com


How can this be achieved in Azure?

Thanks

Upvotes: 0

Views: 56

Answers (1)

viperguynaz
viperguynaz

Reputation: 12174

Follow the instructions at Configuring a custom domain name for an Azure Web Site. More generally, create your Azure websites and then create three CNAME records with your domain registrar and point them to the Azure DNS:

  • create CNAME record "www" and point to www-mysite.azurewebsites.net
  • create CNAME record "admin" and point to admin-mysite.azurewebsites.net
  • create CNAME record "business" and piont to business-mysite.azurewebsites.net

Then in the Azure Portal on each website - Manage Domains - to add the custom domain.

Upvotes: 1

Related Questions