Questions tagged [azure-application-gateway]

834 questions
2
votes
1 answer

Azure B2C with Azure Application Gateway and Path Based Backend Pools

I am unable to understand how to configure Azure AD B2C auth on a .Net Core 3.1 MVC application that has been configured behind an Azure Application Gateway using Back End Pool and Path Based URL mapping. I have a .Net Core MVC (3.1) app that uses…
2
votes
0 answers

Remove property from ARM Template when it's not needed

I'm deploying an application gateway with ARM Template and wants to loop through the creation of listeners. This is how far I got: "copy": [ { "name": "httpListeners", "count":…
Santa
  • 71
  • 7
2
votes
1 answer

Understanding Outbound Data Transfer for Azure App Service Plan

For the purpose of migrating a very small business web application from on-premise to Azure PAAS service environment, We have identified the below tentative solution.. Use Azure Storage Account to Host the front end (Angular SPA). Use App Service…
2
votes
2 answers

Azure App Service Deployment Slot - Application Gateway

Working on a project where we are starting to use Deployment Slots in our App Services. All our Prod apps are located behind Application Gateway, and we would like to also have our Slots located behind Application Gateway. I understand we can not do…
2
votes
1 answer

Enable the Application Gateway Ingress Controller (AGIC) add-on for an AKS cluster using custom subnet

I follow this tutorial https://learn.microsoft.com/en-us/azure/application-gateway/tutorial-ingress-controller-add-on-new to install AGIC for AKS cluster. As the docs, the default vnet is 10.0.0.0/8 and subnet is 10.240.0.0/16. I don't want to use…
Franxi Hidro
  • 505
  • 4
  • 18
2
votes
1 answer

Azure Log Analytics - How to view logs from last x days but only between certain hours?

I'd like to look at the app gateway 500 error logs over the last x number of days. But for those x number of days, I'd only like to see the logs that came in between 11:00 and 13:00 UTC. How can I do this? Here's what I have so far but it's not…
2
votes
1 answer

Azure Application Gateway not showing VM from other VNet in backend pool

When setting up the Backend pools of an Azure Application Gateway, I want to set a specific VM in the pool. This VM is in another VNet, and I've set up peering between the App Gateway's VNet and the VM's VNet. Still, when I choose Virtual Machine as…
ml123
  • 1,059
  • 2
  • 12
  • 27
2
votes
1 answer

How to remove weak ciphers from TLS 1.2 configuration on Azure App Service?

Our Security team reported usage of weak Cipher in our application as seen below, I would like to remove them, any help or guidance is appreciated:
2
votes
1 answer

Should I use one or multiple Azure App Gateway with multiple environments (dev, test, prod)?

I have App Service behind App Gateway and need to maintain couple different environments (dev, test, prod). I have also vnet with two subnets, frontent for App Gateway and backend for app service. Each env has own subdomain ie. dev.example.com,…
2
votes
0 answers

Azure Application Gateway slash termination uri path

I'm using Azure Application Gateway, I've a strange trouble. The Gateway works for URL similar to: https://www.example.com/resoruce/ It doesn't work for URL similar to: https://www.example.com/resoruce So, I have to terminate the URL with a "/". Can…
Michel Foucault
  • 1,724
  • 3
  • 25
  • 48
2
votes
1 answer

Application Gateway Rules need recreating after private DNS is updated

I have an application gateway which has a routing rule. The routing from application gateway to the VM is based up FQDN (I use Azure private DNS to internally map the VM IP to the FQDN). To switch traffic to a different VM (as part of an upgrade…
iasksillyquestions
  • 5,558
  • 12
  • 53
  • 75
2
votes
1 answer

Change grafana.ini in IstioControlPlane using istioctl

I am running grafana (kiali, prometheus and tracing too) inside an Azure Kubernetes Cluster (AKS). The AKS cluster is behind an Application Gateway Ingress Controller (AGIC) the grafana pod is running in a subpath like https://{domain}/grafana/. I…
2
votes
1 answer

Terraform-Azure-Unable to create Private IP configuration for application Gateway StandardV2

I'm trying to create an application gateway (Standard V2) with both public IP and private IP configuration, but upon creation only public IP is being created and private IP configuration is nowhere to be found. I don't see any mistake in my…
2
votes
0 answers

IdentityServer 4 on Azure Can we secure its endpoints using Azure API gateway

We have created our own IdentityServer4 and deployed it on App Services in azure. I also have few apis that are protected by API gateway for me. Can i PUT IdentityServer4 endpoints secured by API gateway? If yes, how? Do i need to configure some…
2
votes
1 answer

Route traffic to container using Azure Application Gateway Path-based

I'm currently working with Azure Application Gateway and Docker containers(AKS); and would like to route traffic to my backend pool using path-based rules. I heard that path-based rules and containers don't have a really good compatibility. Is this…