Skip to content

Commit 4f98602

Browse files
committed
Updates
1 parent 1c1f180 commit 4f98602

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

articles/frontdoor/front-door-routing-limits.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,30 @@ The composite route metric for each Front Door profile can't exceed 5000.
2323
> [!TIP]
2424
> Most Front Door deployments don't approach the composite route limit. However, if you have a large Front Door deployment, consider whether you could exceed the limit and plan accordingly.
2525
26-
## Calculate your composite route metric
26+
## Calculate your profile's composite route metric
2727

28-
Use the following formula to calculate the composite route metric for your Front Door profile:
28+
Follow these steps to calculate the composite route metric for your Front Door profile:
2929

30-
```
31-
Composite route metric = [Route1 [HTTP (#Domains * #Paths)] + Route1 [HTTPS (#Domains * #Paths)] + Route2 [HTTP (#Domains * #Paths)]+ HTTPS(#Domains * #Paths)] +… [RouteN [HTTP (#Domains * #Paths)]+ RouteN [HTTPS (#Domains * #Paths)]
32-
```
30+
1. Select a route from your profile.
31+
1. Multiply the number of HTTP domains by the number of HTTP paths.
32+
1. Multiply the number of HTTPS domains by the number of HTTPS paths.
33+
1. Add the results of steps 1a and 1b together to give the composite route metric for this individual route.
34+
1. Repeat these steps for each route in your profile.
35+
36+
Add together all of the composite route metrics for each route. This is your profile's composite route metric.
3337

3438
### Example
3539

36-
Suppose you have have two routes in your Front Door profile. The routes are named *Route1* and *Route2*. You want to configure the routes as follows:
37-
* *Route1* will have 50 domains associated to it, and requires HTTPS for all inbound requests. *Route1* specifies 80 paths.
38-
* *Route2* will have 25 domains associated to it. *Route2* specifies 25 paths, and supports both the HTTP and HTTPS protocols.
40+
Suppose you have have two routes in your Front Door profile. The routes are named *Route 1* and *Route 2*. You plan to configure the routes as follows:
41+
* *Route 1* will have 50 domains associated to it, and requires HTTPS for all inbound requests. *Route 1* specifies 80 paths.
42+
* *Route 2* will have 25 domains associated to it. *Route 2* specifies 25 paths, and supports both the HTTP and HTTPS protocols.
3943

4044
The following calculation illustrates how to determine the composite route metric for this scenario:
4145

4246
```
43-
= Route1 [HTTPS(50 Domains*80 Paths)] + Route2 [HTTP (25 Domains*25 Paths) + HTTPS(25 Domains*25 Paths)]
44-
45-
= (50*80) + [(25*25) + (25*25)]
46-
47+
Profile composite route metric = Route 1 composite route metric + Route 2 composite route metric
48+
= Route 1 [HTTPS (50 Domains * 80 Paths)] + Route 2 [HTTP (25 Domains * 25 Paths) + HTTPS(25 Domains * 25 Paths)]
49+
= [50 * 80] + [(25 * 25) + (25 * 25)]
4750
= 5250
4851
```
4952

0 commit comments

Comments
 (0)