Skip to content

Commit d86e4a4

Browse files
Merge pull request #54099 from staleycyn/patch-3
Content drift fixes for the Load Balance HTTPS traffic module
2 parents 03de1e3 + 8c465c0 commit d86e4a4

3 files changed

Lines changed: 22 additions & 17 deletions

File tree

learn-pr/wwl-azure/load-balancing-https-traffic-azure/includes/2-design-azure-application-gateway.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11

22

33

4-
The [Azure Application Gateway](/azure/application-gateway/overview) processes network traffic to web apps hosted on a pool of web servers. The processing performed by Azure Application Gateway includes load balancing HTTP traffic and inspecting traffic using a web application firewall. This type of routing is known as application layer (OSI layer 7) load balancing. Azure Application Gateway includes the following features:
4+
The [Azure Application Gateway](/azure/application-gateway/overview) processes network traffic to web apps hosted on a pool of web servers. The processing performed by Azure Application Gateway includes load balancing HTTP traffic and inspecting traffic using a web application firewall. This type of routing is known as application layer (OSI layer 7) load balancing. A
5+
6+
Azure Application Gateway v2 includes the following features.
57

68
- Support for the HTTP, HTTPS, HTTP/2, and WebSocket protocols.
79
- A web application firewall (WAF) to protect against web application vulnerabilities.
8-
- End-to-end request encryption.
10+
- SSL/TLS termination at the gateway, offloading encryption overhead from backend servers.
11+
- End-to-end TLS encryption for compliance scenarios requiring encryption to the backend.
912
- Autoscaling to dynamically adjust capacity as your web traffic load change.
1013
- Connection draining allowing graceful removal of backend pool members during planned service updates.
1114
- Session stickiness to ensure client requests in the same session are routed to the same backend server.
12-
- Path and URL based routing.
15+
- Path and URL based routing.
16+
- Zone redundancy, Azure key vault integration, and HTTP header rewrite.
17+
18+
> [!Note]
19+
> Support for Application Gateway V1 ends on April 28, 2026.
20+
1321

1422
## How Azure Application Gateway works
1523

@@ -24,4 +32,4 @@ Let's review the [Azure Application Gateway components](/azure/application-gatew
2432
- **Health probes**. Health probes determine which servers are available for load-balancing in a backend pool. Servers are automatically added and removed from the backend pool based on their availability.
2533

2634
> [!TIP]
27-
> Learn more about Azure Application Gateway check out the [Introduction to Azure Application Gateway](/training/modules/intro-to-azure-application-gateway/) module.
35+
> Learn more about Azure Application Gateway check out the [Introduction to Azure Application Gateway](/training/modules/intro-to-azure-application-gateway/) module.
Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
2-
3-
4-
51
[Azure Front Door](/azure/frontdoor/front-door-overview) is Microsoft’s modern cloud Content Delivery Network (CDN) that provides fast, reliable, and secure access between your users and your applications. Azure Front Door delivers your content using the Microsoft’s global edge network with hundreds of global and local POPs distributed around the world close to both your enterprise and consumer end users.
62

3+
74
## Azure Front Door tiers
85

9-
Azure Front Door provides both content delivery and security features. **Azure Front Door Standard** is content-delivery optimized.
6+
> [!Note]
7+
> Azure Front Door has three tiers: Standard, Premium, and Classic. This module focuses on Standard and Premium. New resources will not be supported on Azure Front Door Classic after August 2025.
8+
9+
**Azure Front Door Standard** provides both content delivery and security features.
1010

1111
- Provide for both static and dynamic content acceleration.
1212
- Support global load balancing.
1313
- Implement SSL offload.
1414
- Implement domain and certificate management.
1515
- Benefit from enhanced traffic analytics.
16-
- Benefit from basic security capabilities.
16+
- Custom WAF rules for basic protection against known attack patterns.
1717

18-
**Azure Front Door Premium** is security optimized.
18+
**Azure Front Door Premium** is security optimized and provides other features.
1919

20-
- Extensive security capabilities across Web Application Firewall.
2120
- BOT protection.
2221
- Private Link support.
2322
- Integration with Microsoft Threat Intelligence and security analytics.
23+
- Microsoft-managed WAF rule sets that autoupdate against OWASP top-10 and emerging threats.
2424

2525
## Azure Front Door usage cases
2626

@@ -37,9 +37,6 @@ This diagram shows a user request processed by Azure Front Door.
3737

3838
## Other things to know
3939

40-
- **Routing algorithm**. The Azure Front Door routing algorithm first matches based on HTTP protocol, then frontend host, then the Path.
41-
- HTTP Protocols (HTTP/HTTPS)
42-
- Hosts (for example, www.foo.com, \*.bar.com)
43-
- Paths (for example, /*, /users/*, /file.gif)
40+
- **Routing algorithm**. The Azure Front Door routing algorithm first matches based on HTTP protocol, then frontend host, and then Path. The Standard and Premium tiers also support a Rules Engine that uses regular expressions and server variables for complex routing conditions.
4441
- **Response codes**. Azure Front Door response codes help clients understand the purpose of the redirect. You can set the protocol used for redirection. The most common use case of the redirect feature is to set HTTP to HTTPS redirection.
4542
- **Health probes**. Front Door periodically sends a synthetic HTTP/HTTPS request to each of your configured backends. Front Door then uses these responses from the probe to determine the "best" backend resources to route your client requests.

learn-pr/wwl-azure/load-balancing-https-traffic-azure/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
prefetch-feature-rollout: true
66
title: Load balance HTTP(S) traffic in Azure
77
description: "You learn how to design load balancer solutions for HTTP(S) traffic and how to implement Azure Application gateway and Azure Front Door."
8-
ms.date: 02/19/2026
8+
ms.date: 03/23/2026
99
author: wwlpublish
1010
ms.author: cynthist
1111
ms.topic: module

0 commit comments

Comments
 (0)