Home > Blockchain >  Failed to access traffic manager DNS URL
Failed to access traffic manager DNS URL

Time:04-22

I have created two app services and created a traffic manager. I have added two endpoints for app services in traffic manager.

When I am accessing URL in app services, it works fine.

However, I tried to access the DNS name / URL from traffic manager it shows the below error in this picture:

Traffic manager URL: enter image description here

CodePudding user response:

The error message shows that cutom domain has not been configured. You can follow the below steps to configure it and to resolve the issue:

When you use Azure Traffic Manager to load balance traffic to Azure App Service, the App Service app can be accessed using traffic-manager-endpoint .trafficmanager.net .

You can assign a custom domain name, such as www.contoso.com, with your App Service app in order to provide a more recognizable domain name for your users.

To map a custom DNS name to an app that's integrated with Azure Traffic Manager, the web app's App Service plan must be in Standard tier or higher.

On the App Services page, select the name of your Azure app. In the left navigation of the app page, select Scale up (App Service plan).

Refer this link for complete information to Create Traffic Manager endpoint.

  • Related