Skip to content

Commit 5db57e3

Browse files
committed
Fixes issue #8640
1 parent 4101503 commit 5db57e3

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

articles/application-gateway/tutorial-manage-web-traffic-cli.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: jpconnock
88
ms.service: application-gateway
99
ms.topic: tutorial
1010
ms.workload: infrastructure-services
11-
ms.date: 4/27/2018
11+
ms.date: 5/16/2018
1212
ms.author: victorh
1313
ms.custom: mvc
1414
---
@@ -93,7 +93,7 @@ az network application-gateway create \
9393
- *appGatewayFrontendIP* - Assigns *myAGPublicIPAddress* to *appGatewayHttpListener*.
9494
- *rule1* - The default routing rule that is associated with *appGatewayHttpListener*.
9595

96-
## Create a virtual machine scale set
96+
## Create a Virtual Machine Scale Set
9797

9898
In this example, you create a virtual machine scale set that provides servers for the backend pool in the application gateway. The virtual machines in the scale set are associated with *myBackendSubnet* and *appGatewayBackendPool*. To create the scale set, use [az vmss create](/cli/azure/vmss#az_vmss_create).
9999

@@ -115,14 +115,16 @@ az vmss create \
115115

116116
### Install NGINX
117117

118+
Now you can install NGINX on the virtual machine scale set so you can test HTTP connectivity to the backend pool.
119+
118120
```azurecli-interactive
119121
az vmss extension set \
120122
--publisher Microsoft.Azure.Extensions \
121123
--version 2.0 \
122124
--name CustomScript \
123125
--resource-group myResourceGroupAG \
124126
--vmss-name myvmss \
125-
--settings '{ "fileUris": ["https://raw.githubusercontent.com/vhorne/samplescripts/master/install_nginx.sh"], "commandToExecute": "./install_nginx.sh" }'
127+
--settings '{ "fileUris": ["https://raw.githubusercontent.com/davidmu1/samplescripts/master/install_nginx.sh"], "commandToExecute": "./install_nginx.sh" }'
126128
```
127129

128130
## Test the application gateway

0 commit comments

Comments
 (0)