Questions tagged [azure-application-gateway]

834 questions
4
votes
2 answers

Azure application gateway with oauth removes token

We're currently struggling with an issue in our azure environment. In our current setup we have an application gateway connecting to 2 application services. 1 app service is using basic auth. Nothing is wrong here and it works as expected. The…
4
votes
1 answer

Azure Application Gateway forwarding "/*" to Backend Pool

I have an Azure Application Gateway set up with Path-Based routing to route between two different Backend Pools. I also have Application Insights configured on one of the Pools, which I will come back to in a moment. My path rule is configured like…
Turner Bass
  • 801
  • 8
  • 20
4
votes
6 answers

Azure Traffic Manager with Application Gateway backends

We have an architecture whereby we have a traffic manager in front of two Azure application gateways and configured based on Priority (closer proximity has higher priority). We are using Application Gateway for path based routing to multiple web…
4
votes
1 answer

Azure App Service with WAF

I'm looking for some Azure security best practice advice. I've seen some articles around on how to do it, but not if its necessarily required. I have a customer who would like to move to Azure and they have specifically requested we stick to a PAAS…
4
votes
2 answers

Azure network security group and Application Gateway

I have the next azure setup: Application gateway balancer with it's own vnet . Two vms in Application gateway backend pool which have their own vnet and a network security group applied to the vms. Main problem: How can I instruct the network…
4
votes
2 answers

Azure Multiple Public IPs on a Virtual Machine Scale Set with Resource Manager

We try to migrate our Platform from classical IIS hosting to a service fabric micro service architecture. So fare we learned that a service fabric lives in a virtual machine scale set and uses Load balancer to communicate to the outside world. The…
3
votes
1 answer

Connect Azure Application Gateway with Internal AKS managed loadbalancer

I am trying to implement AKS Baselines with terraform, but I can't get my Application Gateway connect to the internal load balancer created by AKS. My AKS config contains of a solr instance and a service with azure-load-balancer-internal annotation.…
3
votes
2 answers

I added FrontDoor to an app service, then deleted FD and now the app service no longer works

The DNS records for Front Door were deleted as well. We have an app gateway to the app service, which is under an app service env. I can see traffic on my app gateway: But none on the app service: The error I get when I try to access the web app…
3
votes
1 answer

Azure Kubernetes Service (AKS) uses Application Gateway Ingress Controller (AGIC) : How to implement HSTS header in ASP.Net Core 6.0?

An action item from the security scan is to implement HSTS header in ASP.Net Core 6.0 WebAPI. A WebAPI application is deployed on AKS using Application Gateway Ingress Controller. SSL termination occurs at the Application Gateway. Application…
3
votes
1 answer

App Gateway configuration with Private Endpoint enabled web apps

I am trying to expose my Front End and Function Web Apps using App Gateway. Both of those apps belong to one app service plan. They are also private endpoint enabled and VNET integrated. I have databricks in another tenant which needs to feed data…
3
votes
3 answers

Azure Load Balancing Solutions. Direct Traffic to Specific VMs

We are having difficulties choosing a load balancing solution (Load Balancer, Application Gateway, Traffic Manager, Front Door) for IIS websites on Azure VMs. The simple use case when there are 2 identical sites is covered well – just use Azure Load…
3
votes
4 answers

Azure Application Gateway: Cannot connect to backend server in

Due to a recent layoff I got bombarded to azure admin out of the blue. I am pretty new to this and haven't yet got the chance to follow an admin course. Facing the following issue: We host a couple of websites on an Azure Windows Server VM running…
3
votes
1 answer

How to avoid updating backend pool of application gateway by terraform script

I am trying to deploy AKS with application gateway ingress controller via terraform. For which I have created application gateway , AKS (also enabled ingress controller setting) and then deployed YAML file with kind=ingress. Now, for the first time…
3
votes
1 answer

Application Gateway (or Load Balancer) with App Services using Terraform?

I am looking for the best way to implement load balancing (including redirection between multiple app services based on URL path) with App Services. This is what I have right now: # App Service Plan resource "azurerm_app_service_plan" "frontend" { …
3
votes
1 answer

Azure Application Gateway Ingress Controller - The number of BackendHttpSettings exceeds the maximum allowed value 100

We are using Azure Application Gateway as the ingress controller to our AKS cluster and we have been hitting this issue occasionally. "The number of BackendHttpSettings exceeds the maximum allowed value and the maximum allowed is 100." Does AGIC…