Azure - Custom DNS to App Service

        

Scenario: Map custom domain to Azure App Service

Solution:

  1. Azure -> App Services -> My Service -> Custom Domains [left pane]
  2. Copy
    1. Custom Domain Verification ID
    2. IP address
  3. Go to your domain provider, e.g. Google Domains
  4. DNS -> Add
    1. Name/Host = @
    2. Type = A
    3. Value = IP address [2.2]
  5. DNS - > Add
    1. Name/Host = asuid
    2. Type = TXT
    3. Value = Custom Domain Verification ID [2.1]
  6.  Go back to Azure -> App Service -> Custom Domains -> Add Custom Domain
  7. Fully qualified domain name per A record [#4].
  8. Validate
  9. Might take while for the new custom domain to show up in Custom Domains page.
  10. Verify navigating to the above domain.

No comments:

Post a Comment

Move Github Sub Repository back to main repo

 -- delete .gitmodules git rm --cached MyProject/Core git commit -m 'Remove myproject_core submodule' rm -rf MyProject/Core git remo...