I have a domain (i.e. https://www.example.com). This domain points to content in an Azure Storage container. I have set up this container as a static website following these steps. Now, I need to add a subdomain (i.e. https://subdomain.example.com) that points to a separate Azure Storage container.
I thought I could do this by adding a CNAME record to my DNS that points to the container url. However, my domain provider will not let me use a URL that includes a path. I don't know if this is a DNS rule or something my domain provider does. Regardless, the Azure Storage container has a path (i.e. http://mystorageaccount.blob.core.windows.net/mycontainer). For this reason, I can't point a subdomain to an Azure Storage container via a CNAME record. My domain provider will only allow me to use (http://mystorageaccount.blob.core.windows.net) which clearly doesn't reference the container.
How do I point a subdomain to an Azure Storage container?
Thank you!