1

I have been developing several static websites which I host as blob storage static websites. I then use Azure CDN with custom domains.

While this works when I use www. with my custom domain, it does not work without it. For example -> www.tommcclean.me (works) tommcclean.me (doesn't work)

Naturally this is because it uses a CNAME mapping, Ideally I need to setup an A record but I can't find an IP to give it.

How should I solve this problem?

  • Does this answer your question? [Azure CDN using root domain solution](https://stackoverflow.com/questions/48198859/azure-cdn-using-root-domain-solution) – Alex AIT Jul 05 '20 at 21:39
  • Hey! Unfortunately not; none of the DNS providers I am using support alias A-Name records (Namecheap/123reg/BlueHost) –  Jul 06 '20 at 22:05

1 Answers1

1

Only solution I know of: You can switch your DNS name servers over to Azure DNS.

You then have two options:

  • Use CNAME as suggested in the sample
  • Use alias records to point the domain directly to your CDN
Alex AIT
  • 17,361
  • 3
  • 36
  • 73