Questions tagged [azure-application-gateway]

834 questions
2
votes
2 answers

Azure application gateway not taking the timeout setting

I'm having an issue with the timeout of my application gateway waf v2. I set the timeout to 220 sec as showed in the following picture but im getting a 504 gateway timeout of a particular request at 100 seconds. Do I need to have any other…
Van Darth Vadden
  • 561
  • 1
  • 5
  • 11
2
votes
1 answer

Azure Application Gateway received invalid status code: 404 from App Service

I am using Microsoft Learn to setup the following lab: https://learn.microsoft.com/en-us/learn/modules/load-balance-web-traffic-with-application-gateway/5-exercise-create-configure-application-gateway. However, I can´t get it working as described as…
2
votes
2 answers

Correlation between Azure Application Gateway and Azure Application Insights

Is there a way to correlate the logs between Azure Application Gateway Logs and Azure Application Insights?. We need to maps the relations from top-level appliances to application
2
votes
2 answers

SQL Server Reporting Services (SSRS) web portal not working with Azure Application Gateway v2

Has anyone had luck getting SSRS to work when behind a v2 Azure Application Gateway? The site loads, but randomly prompts for authentication and fails to render part of the site properly. I first tried this with SSRS 2016 back in 2019 and worked…
2
votes
0 answers

How Istio and AKS handle egress traffic to the Application Gateway in Azure, in a Hub and Spoke network

This Azure setup uses Application Gateway with AKS and Istio acting as ingress controller. There is also a Hub and Spoke where the Application Gateway is in one of the Spokes. The request enters via the Application Gateway, reaches the AKS but then…
Morariu
  • 334
  • 2
  • 18
2
votes
0 answers

Application gateway path based routing is not working

I'm trying to setup application gateway in-front of my two app services which are API's sitting in a separate subnet on its own. Let's say API1 and API2. I have exposed the app services only to be accessed using a private endpoint within a VNET. The…
Aryan M
  • 571
  • 3
  • 12
  • 33
2
votes
1 answer

terraform 0.12 application gateway ssl certificate issue

We are trying to upgrade terraform 0.11 to 0.12, and there is an application gateway ssl certificate issue. It works fine when use like below by terraform 0.11: ssl_certificate { name = "helm-mbw-int.mercedes-benz.com.cn" data =…
2
votes
1 answer

Azure application gateway - create path based rule to homepage

I need to create a path based rule that would redirect homepage to another backend pool than default one, but I can't find a workaround to do so. In other words, my homepage doesn't belong to the default backend, and I need to find a way to route…
GregOs
  • 403
  • 3
  • 13
2
votes
1 answer

Problems using App Gateway as Origin with Azure Frontdoor Premium (Preview)

I am trying to deploy n Azure Frontdoor Premium Resource (preview) with application gateway as the origin, it will send traffic to app gateway via the private link service, however I am facing this blocker as shown in the image below, my question…
2
votes
1 answer

Overcoming the 40 Frontend Port limitation on Azure Application Gateway

We present a customer facing application on ourapp.com Ourapp.com points to the public IP of our Azure Web Application firewall Each of our customers has two dedicated ports that they use to access the application. All of those ports are within the…
AidenWebb
  • 589
  • 2
  • 7
  • 14
2
votes
1 answer

azure application gateway behind azure front door multiple websites domains ssl

Infrastructure]1 Info picture - all servers should have the same configurations and websites and ports. The goal is that on all virtual servers in VMSS are running the different websites ( www.xxx.com , www.yyy.com , wwww.zzz.com ) The SSL…
2
votes
0 answers

Azure Application Gateway and Certificate SAN

I'm having issues trying to configure multiple listeners in an Azure Application Gateway that use the same certificate. I have a backend web server configured with a website for www.example.com, bound to the host headers "www.example.com" and…
Rob Moir
  • 123
  • 1
  • 7
2
votes
1 answer

Terraform state sync with external changes

I have terraform managing my infrastructure in Azure. However, there are cases where the state can get out of sync when other services are changing the infrastructure as well. For example, I have terraform create an Application Gateway. But I also…
2
votes
1 answer

PFX size limit error on Azure application gateway configuration

I am trying to configure azure application gateway. I provided .pfx file for https listener configuration. But when i tried to create Azure application gateway, I am getting below error { "code": "InvalidTemplateDeployment", …
2
votes
4 answers

two frontend ports of application gateway are using the same port 443 - Azure application gateway in terraform

I am configuring azure application gateway using terraform. Following is the module that i wrote: locals { backend_address_pool_name = format("appgwbeap-%[1]s-%[2]s%[3]sweb-gw",var.project_code,var.env,var.zone) frontend_port_name …