File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
articles/application-gateway Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,8 @@ az network application-gateway create \
87
87
--frontend-port 80 \
88
88
--http-settings-port 80 \
89
89
--http-settings-protocol Http \
90
- --public-ip-address myAGPublicIPAddress
90
+ --public-ip-address myAGPublicIPAddress \
91
+ --priority 100
91
92
```
92
93
93
94
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 \
159
160
--resource-group myResourceGroupAG \
160
161
--path-map-name myPathMap \
161
162
--paths /video/* \
162
- --address-pool videoBackendPool
163
+ --address-pool videoBackendPool \
164
+ --http-settings appGatewayBackendHttpSettings
163
165
```
164
166
165
167
### Add a routing rule
@@ -174,7 +176,8 @@ az network application-gateway rule create \
174
176
--http-listener backendListener \
175
177
--rule-type PathBasedRouting \
176
178
--url-path-map myPathMap \
177
- --address-pool appGatewayBackendPool
179
+ --address-pool appGatewayBackendPool \
180
+ --priority 200
178
181
```
179
182
180
183
## Create virtual machine scale sets
You can’t perform that action at this time.
0 commit comments