Skip to content

Commit f562b4a

Browse files
Merge pull request #227740 from GitaraniSharma-MSFT/patch-74
(AzureCXP) MicrosoftDocs/azure-docs#105222
2 parents e2c3577 + d018e16 commit f562b4a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

articles/application-gateway/tutorial-url-route-cli.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ az network application-gateway create \
8787
--frontend-port 80 \
8888
--http-settings-port 80 \
8989
--http-settings-protocol Http \
90-
--public-ip-address myAGPublicIPAddress
90+
--public-ip-address myAGPublicIPAddress \
91+
--priority 100
9192
```
9293

9394
It may take several minutes to create the application gateway. After the application gateway is created, you can see these new features:
@@ -159,7 +160,8 @@ az network application-gateway url-path-map rule create \
159160
--resource-group myResourceGroupAG \
160161
--path-map-name myPathMap \
161162
--paths /video/* \
162-
--address-pool videoBackendPool
163+
--address-pool videoBackendPool \
164+
--http-settings appGatewayBackendHttpSettings
163165
```
164166

165167
### Add a routing rule
@@ -174,7 +176,8 @@ az network application-gateway rule create \
174176
--http-listener backendListener \
175177
--rule-type PathBasedRouting \
176178
--url-path-map myPathMap \
177-
--address-pool appGatewayBackendPool
179+
--address-pool appGatewayBackendPool \
180+
--priority 200
178181
```
179182

180183
## Create virtual machine scale sets

0 commit comments

Comments
 (0)