azure-traffic-manager

RequireNonce is 'true' (default) but validationContext.Nonce is null in Azure Traffic Manager , OpenIdConnectAuthentication

只愿长相守 提交于 2020-01-24 23:31:07
问题 I have my website(Azure App Service) deployed in two regions under Microsoft Azure . https://abcd1-westus.azurewebsites.net/ https://abcd2-centralus.azurewebsites.net/ I created a Traffic Manager Profile to control the distribution of user traffic for service endpoints. The DNS Name of Traffic Manager Profile is "http://abcd.trafficmanager.net" Authentication is done by Azure AD . Once we are trying to access Traffic Manager DNS Url , it prompts for AAD login and redirect to https://abcd2

Microsoft Azure Traffic Manager

[亡魂溺海] 提交于 2020-01-04 05:53:45
问题 I've created an Azure Traffic Manager profile which uses failover as the load balancing method. The primary endpoint is an on-premises website test.company.com . The other endpoint is an Azure Website App which has a custom domain name xxx.mysite.com . When I added the endpoint to Traffic Manager it points to mysite.azurewebsites.net . I've created a CNAME record at the ISP to point xxx.mysite.com to mycompany.trafficmanager.net . When I stop the primary website to simulate a failover to the

Pointing domain name to azure traffic manager URL instead of directly to server IP

梦想的初衷 提交于 2019-12-25 01:33:44
问题 So I have a domain badgag.com That points to an IP of the current server. But I want it instead to point to http://badgag.trafficmanager.net/ This DNS will route to the server with the lowest latency. So I try to change mapping to badgag.com -> badgag.trafficmanager.net -> closest web app -> IP But I am not sure what A, cname etc records I need to change. This is how it looks now: A @ 104.45.14.249 1 time CNAME autoconfig @ 1 time CNAME autoconfig.admin @ 1 time CNAME autodiscover @ 1 time

Achieving High Availability using Azure Traffic Manager

末鹿安然 提交于 2019-12-24 07:38:48
问题 We have deployed our solution for high availability using Azure Traffic manager with default settings. Selected routing method for us is Performance. We expected that as soon as the primary server is down, the users are transferred to the secondary server. But unfortunately there is a 30 sec delay. For those 30 seconds in our testing we found that users are getting not responding issues and requests time out . It takes almost a minute to get back everything at work. Azure Traffic Manager with

Using Azure traffic manager with Mobile App

雨燕双飞 提交于 2019-12-20 04:52:11
问题 Can Azure Traffic Manager be used with Mobile Apps specially with social login? I have configured a traffic manager and two app services (say, mobileapp1 and mobileapp2) to work with it.They seem to work pretty nice with postman and the response and everything is working. Now, I have declared traffic manager's URL as client in xamarin client app and the app throws exception when I am logging in into azure. After logging in facebook, when I am passing the token to server using this line var

traffic manager + azure website : how do I configure custom dns ssl

南笙酒味 提交于 2019-12-19 19:56:28
问题 I have a custom dns entry mapped to my traffic manager setup via CNAME record. I also have traffic manager pointing to my azure website endpoint and I have a wildcard cert matching my custom dns uploaded on my website. I'm having trouble getting ssl to work. The documentation is not clear on how to set up SSL when using traffic manager. Any help is appreciated. Please note I had this working with cloud service "web role" but I'm wanting to migrate to azure websites. 回答1: Have you seen this

traffic manager + azure website : how do I configure custom dns ssl

蹲街弑〆低调 提交于 2019-12-19 19:56:23
问题 I have a custom dns entry mapped to my traffic manager setup via CNAME record. I also have traffic manager pointing to my azure website endpoint and I have a wildcard cert matching my custom dns uploaded on my website. I'm having trouble getting ssl to work. The documentation is not clear on how to set up SSL when using traffic manager. Any help is appreciated. Please note I had this working with cloud service "web role" but I'm wanting to migrate to azure websites. 回答1: Have you seen this

Azure Functions Traffic Manager

时光总嘲笑我的痴心妄想 提交于 2019-12-18 18:01:22
问题 I'm trying to set up some sort of traffic managing so I can have zero downtime while updating my Azure functions. I'd like to have a West US and a East US that I can divert traffic while I publish. I can't seem to get it to work with Azure functions. 回答1: So the answer I arrived to after Traffic manager didntsupport Azure functions was to overall build 3 Azure functions. I built an East and a West that has my azure function code on it. Then I built a main Azure Function that has 0 code. It

How do I dynamically generate Traffic Manager endpoints in an ARM template?

…衆ロ難τιáo~ 提交于 2019-12-14 03:50:55
问题 I have an ARM template that creates an arbitrary number of Azure webapps using the copy construct, like so (non-relevant portions removed): { "parameters": { "numWebsites": { "type": "int", "defaultValue": 2 } }, "resources": [ "name": "[concat('webapp-', copyIndex()]", "type": "Microsoft.Web/sites", "copy": { "name": "websitescopy", "count": "[parameters('numWebsites')]" } ] } I'd also like to create a Traffic Manager profile with an endpoint for each of the websites created. However, there

Load Balancing with Azure Traffic Manager and Session state store necessary?

两盒软妹~` 提交于 2019-12-13 01:54:06
问题 I am using Azure Traffic manager to load balance two servers in different regions. I thought I would need a single store or redis cache for my session state. However, while testing it seems to keep me logged in even when I go back between servers by testing which server I am on. I log out, and I am logged out on the other. The only session state I am storing is a user profile, but if it's not found it just goes to the server and grabs it. Below is my forms setup. Do I really need something