Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Naked domain support for Azure Websites

From the looks of it the new Azure Websites Feature still does not support hosting them under a naked domain such as example.com instead of www.example.com. Am I missing something?

like image 785
Oliver Weichhold Avatar asked Jun 08 '12 06:06

Oliver Weichhold


People also ask

Can I use GoDaddy domain with Azure?

You can delegate your domain to Azure DNS by creating a DNS zone in Azure DNS and adding it's NS records to GoDaddy, where you own the domain. This will allow you to host a DNS zone and manage the DNS records for your domain in Azure.

Can I host my domain on Azure?

You can use Azure DNS to host your DNS domain and manage your DNS records. By hosting your domains in Azure, you can manage your DNS records by using the same credentials, APIs, tools, and billing as your other Azure services.

Does Azure have a domain registrar?

Azure DNS doesn't currently support the option to buy domain names. To buy domains, you must use a third-party domain name registrar. Azure DNS allows you to host a DNS zone and manage the DNS records for a domain in Azure.


1 Answers

Azure Websites have now released support for naked domains. Websites that are run on Shared or Reserved instances does support naked domains through an A record. Domain management is available through the Azure management portal.

Update 2012-10-21:

I previously stated that free instances could rely on CNAME to redirect a subdomain to their free Azure-website, but this appear to be incorrect, at least at the moment. Doing a CNAME to your Azure-website will result in an HTTP 404, as reported by MemeDeveloper in his comment.

However, if you run your website on a Free instance, you are still limited to CNAME, so for those websites naked domains are not possible.

Update:

As MemeDeveloper suggest in his comment, there are web services you can use that will take your naked-domain example.com and redirect it to www.example.com for you. For your www subdomain you could then have a CNAME to your Azure-URL.

Not as clean as a simple A record that is available for your paid websites, but a workaround for your free sites.

like image 60
Christofer Eliasson Avatar answered Sep 30 '22 03:09

Christofer Eliasson