How to set up subdomain in microsoft azure

1

I'm creating an application on Azure. I already configured the domain for the main address: ( beleza.vc ), and everything is ok.

Now I'm having trouble setting up a subdomain that will go to the blog folder. Ex: ( beleza.vc/blog ). But I need it to be blog.beleza.vc .

The domain was registered in namecheap.com

    
asked by anonymous 23.01.2017 / 18:27

1 answer

1

To do this is very simple, just in your DNS, create a CNAME entry with name blog pointing to beleza.vc/blog .

Ifyouareusing Azure DNS - you can register your domain in the NameCheap and use the domain namespaces Azure - to manage the hosting of your domain, just click on "+ Record set" and add the entry like this:

  • NAME: blog
  • TYPE: CNAME
  • TTL: 60
  • VALUE: beauty.vc/blog

IfdomainmanagementwasnotonAzureandwouldliketotryout,readherehow Delegate your domain to Azure DNS .

    
27.01.2017 / 09:53