相关文章推荐
面冷心慈的树叶  ·  Configure audit ...·  6 天前    · 
豪情万千的柿子  ·  PowerMenu - ...·  1 年前    · 
博学的圣诞树  ·  c# ...·  1 年前    · 
销魂的海豚  ·  Spring Boot 无侵入式 ...·  1 年前    · 

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft Edge More info about Internet Explorer and Microsoft Edge

This mapping works only for subdomains (for example: www.contoso.com ). If you want your web endpoint to be available on the root domain (for example: contoso.com ), then you'll have to use Azure CDN. For guidance, see the Map a custom domain with HTTPS enabled section of this article. Because you're going to that section of this article to enable the root domain of your custom domain, the step within that section for enabling HTTPS is optional.

Map a custom domain with only HTTP enabled

This approach is easier, but enables only HTTP access. If the storage account is configured to require secure transfer over HTTPS, then you must enable HTTPS access for your custom domain.

To enable HTTPS access, see the Map a custom domain with HTTPS enabled section of this article.

Map a custom domain

Important

Your custom domain will be briefly unavailable to users while you complete the configuration. If your domain currently supports an application with a service-level agreement (SLA) that requires zero downtime, then follow the steps in the Map a custom domain with zero downtime section of this article to ensure that users can access your domain while the DNS mapping takes place.

If you are unconcerned that the domain is briefly unavailable to your users, follow these steps.

✔️ Step 1: Get the host name of your storage endpoint.

✔️ Step 2: Create a canonical name (CNAME) record with your domain provider.

✔️ Step 3: Register the custom domain with Azure.

✔️ Step 4: Test your custom domain.

Step 1: Get the host name of your storage endpoint

The host name is the storage endpoint URL without the protocol identifier and the trailing slash.

  • In the Azure portal , go to your storage account.

  • In the menu pane, under Settings , select Endpoints .

  • Copy the value of the Blob service endpoint or the Static website endpoint to a text file.

    The Data Lake storage endpoint is not supported (For example: https://mystorageaccount.dfs.core.windows.net/ ).

  • Remove the protocol identifier (For example: HTTPS ) and the trailing slash from that string. The following table contains examples.

    Type of endpoint endpoint host name blob service https://mystorageaccount.blob.core.windows.net/ mystorageaccount.blob.core.windows.net static website https://mystorageaccount.z5.web.core.windows.net/ mystorageaccount.z5.web.core.windows.net

    Set this value aside for later.

    Step 2: Create a canonical name (CNAME) record with your domain provider

    Create a CNAME record to point to your host name. A CNAME record is a type of Domain Name System (DNS) record that maps a source domain name to a destination domain name.

  • Sign in to your domain registrar's website, and then go to the page for managing DNS setting.

    You might find the page in a section named Domain Name , DNS , or Name Server Management .

  • Find the section for managing CNAME records.

    You might have to go to an advanced settings page and look for CNAME , Alias , or Subdomains .

  • Create a CNAME record. As part of that record, provide the following items:

  • The subdomain alias such as www or photos . The subdomain is required, root domains are not supported.

  • The host name that you obtained in the Get the host name of your storage endpoint section earlier in this article.

  • In the Azure portal , go to your storage account.

  • In the menu pane, under Security + networking , select Networking .

  • In the Networking page, choose the Custom domain tab.

    This option does not appear in accounts that have the hierarchical namespace feature enabled. For those accounts, use either PowerShell or the Azure CLI to complete this step.

  • In the Domain name text box, enter the name of your custom domain, including the subdomain.

    For example, if your domain is contoso.com and your subdomain alias is www , enter www.contoso.com . If your subdomain is photos , enter photos.contoso.com .

  • To register the custom domain, choose the Save button.

    After the CNAME record has propagated through the Domain Name Servers (DNS), and if your users have the appropriate permissions, they can view blob data by using the custom domain.

    Run the following PowerShell command

    Set-AzStorageAccount -ResourceGroupName <resource-group-name> -Name <storage-account-name> -CustomDomainName <custom-domain-name> -UseSubDomain $false
    
  • Replace the <resource-group-name> placeholder with the name of the resource group.

  • Replace the <storage-account-name> placeholder with the name of the storage account.

  • Replace the <custom-domain-name> placeholder with the name of your custom domain, including the subdomain.

    For example, if your domain is contoso.com and your subdomain alias is www, enter www.contoso.com. If your subdomain is photos, enter photos.contoso.com.

    After the CNAME record has propagated through the Domain Name Servers (DNS), and if your users have the appropriate permissions, they can view blob data by using the custom domain.

    Run the following PowerShell command

    az storage account update \
       --resource-group <resource-group-name> \ 
       --name <storage-account-name> \
       --custom-domain <custom-domain-name> \
       --use-subdomain false
    
  • Replace the <resource-group-name> placeholder with the name of the resource group.

  • Replace the <storage-account-name> placeholder with the name of the storage account.

  • Replace the <custom-domain-name> placeholder with the name of your custom domain, including the subdomain.

    For example, if your domain is contoso.com and your subdomain alias is www, enter www.contoso.com. If your subdomain is photos, enter photos.contoso.com.

    After the CNAME record has propagated through the Domain Name Servers (DNS), and if your users have the appropriate permissions, they can view blob data by using the custom domain.

    Step 4: Test your custom domain

    To confirm that your custom domain is mapped to your blob service endpoint, create a blob in a public container within your storage account. Then, in a web browser, access the blob by using a URI in the following format: http://<subdomain.customdomain>/<mycontainer>/<myblob>

    For example, to access a web form in the myforms container in the photos.contoso.com custom subdomain, you might use the following URI: http://photos.contoso.com/myforms/applicationform.htm

    Map a custom domain with zero downtime

    If you are unconcerned that the domain is briefly unavailable to your users, then consider using the steps in the Map a custom domain section of this article. It's a simpler approach with fewer steps.

    If your domain currently supports an application with a service-level agreement (SLA) that requires zero downtime, then follow these steps to ensure that users can access your domain while the DNS mapping takes place.

    ✔️ Step 1: Get the host name of your storage endpoint.

    ✔️ Step 2: Create an intermediary canonical name (CNAME) record with your domain provider.

    ✔️ Step 3: Pre-register the custom domain with Azure.

    ✔️ Step 4: Create a CNAME record with your domain provider.

    ✔️ Step 5: Test your custom domain.

    Step 1: Get the host name of your storage endpoint

    The host name is the storage endpoint URL without the protocol identifier and the trailing slash.

  • In the Azure portal, go to your storage account.

  • In the menu pane, under Settings, select Endpoints.

  • Copy the value of the Blob service endpoint or the Static website endpoint to a text file.

  • Remove the protocol identifier (For example: HTTPS) and the trailing slash from that string. The following table contains examples.

    Type of endpoint endpoint host name blob service https://mystorageaccount.blob.core.windows.net/ mystorageaccount.blob.core.windows.net static website https://mystorageaccount.z5.web.core.windows.net/ mystorageaccount.z5.web.core.windows.net

    Set this value aside for later.

    Step 2: Create an intermediary canonical name (CNAME) record with your domain provider

    Create a temporary CNAME record to point to your host name. A CNAME record is a type of DNS record that maps a source domain name to a destination domain name.

  • Sign in to your domain registrar's website, and then go to the page for managing DNS setting.

    You might find the page in a section named Domain Name, DNS, or Name Server Management.

  • Find the section for managing CNAME records.

    You might have to go to an advanced settings page and look for CNAME, Alias, or Subdomains.

  • Create a CNAME record. As part of that record, provide the following items:

  • The subdomain alias such as www or photos. The subdomain is required, root domains are not supported.

    Add the asverify subdomain to the alias. For example: asverify.www or asverify.photos.

  • The host name that you obtained in the Get the host name of your storage endpoint section earlier in this article.

    Add the subdomain asverify to the host name. For example: asverify.mystorageaccount.blob.core.windows.net.

  • In the Azure portal, go to your storage account.

  • In the menu pane, under Security + networking, select Networking.

  • In the Networking page, choose the Custom domain tab.

    This option does not appear in accounts that have the hierarchical namespace feature enabled. For those accounts, use either PowerShell or the Azure CLI to complete this step.

  • In the Domain name text box, enter the name of your custom domain, including the subdomain.

    For example, if your domain is contoso.com and your subdomain alias is www, enter www.contoso.com. If your subdomain is photos, enter photos.contoso.com.

  • Select the Use indirect CNAME validation check box.

  • To register the custom domain, choose the Save button.

    If the registration is successful, the portal notifies you that your storage account was successfully updated. Your custom domain has been verified by Azure, but traffic to your domain is not yet being routed to your storage account until you create a CNAME record with your domain provider. You'll do that in the next section.

    Run the following PowerShell command

    Set-AzStorageAccount -ResourceGroupName <resource-group-name> -Name <storage-account-name> -CustomDomainName <custom-domain-name> -UseSubDomain $true
    
  • Replace the <resource-group-name> placeholder with the name of the resource group.

  • Replace the <storage-account-name> placeholder with the name of the storage account.

  • Replace the <custom-domain-name> placeholder with the name of your custom domain, including the subdomain.

    For example, if your domain is contoso.com and your subdomain alias is www, enter www.contoso.com. If your subdomain is photos, enter photos.contoso.com.

    Traffic to your domain is not yet being routed to your storage account until you create a CNAME record with your domain provider. You'll do that in the next section.

    Run the following PowerShell command

    az storage account update \
       --resource-group <resource-group-name> \ 
       --name <storage-account-name> \
       --custom-domain <custom-domain-name> \
       --use-subdomain true
    
  • Replace the <resource-group-name> placeholder with the name of the resource group.

  • Replace the <storage-account-name> placeholder with the name of the storage account.

  • Replace the <custom-domain-name> placeholder with the name of your custom domain, including the subdomain.

    For example, if your domain is contoso.com and your subdomain alias is www, enter www.contoso.com. If your subdomain is photos, enter photos.contoso.com.

    Traffic to your domain is not yet being routed to your storage account until you create a CNAME record with your domain provider. You'll do that in the next section.

    Step 4: Create a CNAME record with your domain provider

    Create a temporary CNAME record to point to your host name.

  • Sign in to your domain registrar's website, and then go to the page for managing DNS setting.

    You might find the page in a section named Domain Name, DNS, or Name Server Management.

  • Find the section for managing CNAME records.

    You might have to go to an advanced settings page and look for CNAME, Alias, or Subdomains.

  • Create a CNAME record. As part of that record, provide the following items:

  • The subdomain alias such as www or photos. The subdomain is required, root domains are not supported.

  • The host name that you obtained in the Get the host name of your storage endpoint section earlier in this article.

    Step 5: Test your custom domain

    To confirm that your custom domain is mapped to your blob service endpoint, create a blob in a public container within your storage account. Then, in a web browser, access the blob by using a URI in the following format: http://<subdomain.customdomain>/<mycontainer>/<myblob>

    For example, to access a web form in the myforms container in the photos.contoso.com custom subdomain, you might use the following URI: http://photos.contoso.com/myforms/applicationform.htm

    Remove a custom domain mapping

    To remove a custom domain mapping, deregister the custom domain. Use one of the following procedures.

    Portal PowerShell Azure CLI
  • In the Azure portal, go to your storage account.

  • In the menu pane, under Security + networking, select Networking.

  • In the Networking page, choose the Custom domain tab.

  • Clear the contents of the text box that contains your custom domain name.

  • Select the Save button.

    After the custom domain has been removed successfully, you will see a portal notification that your storage account was successfully updated.

    We recommend that you use the Azure Az PowerShell module to interact with Azure. See Install Azure PowerShell to get started. To learn how to migrate to the Az PowerShell module, see Migrate Azure PowerShell from AzureRM to Az.

    To remove a custom domain registration, use the Set-AzStorageAccount PowerShell cmdlet, and then specify an empty string ("") for the -CustomDomainName argument value.

  • Command format:

    Set-AzStorageAccount `
        -ResourceGroupName "<resource-group-name>" `
        -AccountName "<storage-account-name>" `
        -CustomDomainName ""
    
  • Command example:

    Set-AzStorageAccount `
        -ResourceGroupName "myresourcegroup" `
        -AccountName "mystorageaccount" `
        -CustomDomainName ""
    

    To remove a custom domain registration, use the az storage account update CLI command, and then specify an empty string ("") for the --custom-domain argument value.

  • Command format:

    az storage account update \
        --name <storage-account-name> \
        --resource-group <resource-group-name> \
        --custom-domain ""
    
  • Command example:

    az storage account update \
        --name mystorageaccount \
        --resource-group myresourcegroup \
        --custom-domain ""
    

    Map a custom domain with HTTPS enabled

    This approach involves more steps, but it enables HTTPS access.

    If you don't need users to access your blob or web content by using HTTPS, then see the Map a custom domain with only HTTP enabled section of this article.

  • Enable Azure CDN on your blob or web endpoint.

    For a Blob Storage endpoint, see Integrate an Azure storage account with Azure CDN.

    For a static website endpoint, see Integrate a static website with Azure CDN.

  • Map Azure CDN content to a custom domain.

  • Enable HTTPS on an Azure CDN custom domain.

    When you update your static website, be sure to clear cached content on the CDN edge servers by purging the CDN endpoint. For more information, see Purge an Azure CDN endpoint.

  • (Optional) Review the following guidance:

  • Shared access signature (SAS) tokens with Azure CDN.

  • HTTP-to-HTTPS redirection with Azure CDN.

  • Pricing and billing when using Blob Storage with Azure CDN.

    Feature support

    Support for this feature might be impacted by enabling Data Lake Storage Gen2, Network File System (NFS) 3.0 protocol, or the SSH File Transfer Protocol (SFTP).

    If you've enabled any of these capabilities, see Blob Storage feature support in Azure Storage accounts to assess support for this feature.

    Next steps

  • Learn about static website hosting in Azure Blob storage
  •