Skip to content

Commit 8bfde79

Browse files
committed
move script out of davidmu1
1 parent 97a96bd commit 8bfde79

9 files changed

+18
-18
lines changed

articles/application-gateway/tutorial-http-redirect-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ editor: tysonn
99
ms.service: application-gateway
1010
ms.topic: article
1111
ms.workload: infrastructure-services
12-
ms.date: 01/23/2018
12+
ms.date: 7/14/2018
1313
ms.author: victorh
1414

1515
---
@@ -200,7 +200,7 @@ az vmss extension set \
200200
--name CustomScript \
201201
--resource-group myResourceGroupAG \
202202
--vmss-name myvmss \
203-
--settings '{ "fileUris": ["https://raw.githubusercontent.com/davidmu1/samplescripts/master/install_nginx.sh"],
203+
--settings '{ "fileUris": ["https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/install_nginx.sh"],
204204
"commandToExecute": "./install_nginx.sh" }'
205205
```
206206

articles/application-gateway/tutorial-internal-site-redirect-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.devlang: na
1111
ms.topic: article
1212
ms.tgt_pltfrm: na
1313
ms.workload: infrastructure-services
14-
ms.date: 01/24/2018
14+
ms.date: 7/14/2018
1515
ms.author: victorh
1616

1717
---
@@ -187,7 +187,7 @@ az vmss extension set \
187187
--name CustomScript \
188188
--resource-group myResourceGroupAG \
189189
--vmss-name myvmss \
190-
--settings '{ "fileUris": ["https://raw.githubusercontent.com/davidmu1/samplescripts/master/install_nginx.sh"],
190+
--settings '{ "fileUris": ["https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/install_nginx.sh"],
191191
"commandToExecute": "./install_nginx.sh" }'
192192
```
193193

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

Lines changed: 2 additions & 2 deletions
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: 5/16/2018
11+
ms.date: 7/14/2018
1212
ms.author: victorh
1313
ms.custom: mvc
1414
---
@@ -124,7 +124,7 @@ az vmss extension set \
124124
--name CustomScript \
125125
--resource-group myResourceGroupAG \
126126
--vmss-name myvmss \
127-
--settings '{ "fileUris": ["https://raw.githubusercontent.com/davidmu1/samplescripts/master/install_nginx.sh"], "commandToExecute": "./install_nginx.sh" }'
127+
--settings '{ "fileUris": ["https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/install_nginx.sh"], "commandToExecute": "./install_nginx.sh" }'
128128
```
129129

130130
## Test the application gateway

articles/application-gateway/tutorial-multiple-sites-cli.md

Lines changed: 2 additions & 2 deletions
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: 3/22/2018
11+
ms.date: 7/14/2018
1212
ms.author: victorh
1313
ms.custom: mvc
1414
#Customer intent: As an IT administrator, I want to use Azure CLI to configure Application Gateway to host multiple web sites , so I can ensure my customers can acess the web information they need.
@@ -211,7 +211,7 @@ for i in `seq 1 2`; do
211211
--name CustomScript \
212212
--resource-group myResourceGroupAG \
213213
--vmss-name myvmss$i \
214-
--settings '{ "fileUris": ["https://raw.githubusercontent.com/davidmu1/samplescripts/master/install_nginx.sh"],
214+
--settings '{ "fileUris": ["https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/install_nginx.sh"],
215215
"commandToExecute": "./install_nginx.sh" }'
216216
217217
done

articles/application-gateway/tutorial-multisite-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.devlang: na
1111
ms.topic: article
1212
ms.tgt_pltfrm: na
1313
ms.workload: infrastructure-services
14-
ms.date: 01/26/2018
14+
ms.date: 7/14/2018
1515
ms.author: victorh
1616

1717
---
@@ -202,7 +202,7 @@ for i in `seq 1 2`; do
202202
--resource-group myResourceGroupAG \
203203
--vmss-name myvmss$i \
204204
--settings '{
205-
"fileUris": ["https://raw.githubusercontent.com/davidmu1/samplescripts/master/install_nginx.sh"],
205+
"fileUris": ["https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/install_nginx.sh"],
206206
"commandToExecute": "./install_nginx.sh" }'
207207
done
208208
```

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

Lines changed: 2 additions & 2 deletions
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: 7/14/2018
1212
ms.author: victorh
1313
ms.custom: mvc
1414
---
@@ -130,7 +130,7 @@ az vmss extension set \
130130
--name CustomScript \
131131
--resource-group myResourceGroupAG \
132132
--vmss-name myvmss \
133-
--settings '{ "fileUris": ["https://raw.githubusercontent.com/davidmu1/samplescripts/master/install_nginx.sh"],"commandToExecute": "./install_nginx.sh" }'
133+
--settings '{ "fileUris": ["https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/install_nginx.sh"],"commandToExecute": "./install_nginx.sh" }'
134134
```
135135

136136
## Create a storage account and configure diagnostics

articles/application-gateway/tutorial-ssl-cli.md

Lines changed: 2 additions & 2 deletions
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: 7/14/2018
1212
ms.author: victorh
1313
ms.custom: mvc
1414
---
@@ -144,7 +144,7 @@ az vmss extension set \
144144
--name CustomScript \
145145
--resource-group myResourceGroupAG \
146146
--vmss-name myvmss \
147-
--settings '{ "fileUris": ["https://raw.githubusercontent.com/davidmu1/samplescripts/master/install_nginx.sh"],
147+
--settings '{ "fileUris": ["https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/install_nginx.sh"],
148148
"commandToExecute": "./install_nginx.sh" }'
149149
```
150150

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

Lines changed: 2 additions & 2 deletions
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: 7/14/2018
1212
ms.author: victorh
1313
ms.custom: mvc
1414
#Customer intent: As an IT administrator, I want to use Azure CLI to set up URL path redirection of web traffic to specific pools of servers so I can ensure my customers have access to the information they need.
@@ -273,7 +273,7 @@ for i in `seq 1 3`; do
273273
--name CustomScript \
274274
--resource-group myResourceGroupAG \
275275
--vmss-name myvmss$i \
276-
--settings '{ "fileUris": ["https://raw.githubusercontent.com/davidmu1/samplescripts/master/install_nginx.sh"], "commandToExecute": "./install_nginx.sh" }'
276+
--settings '{ "fileUris": ["https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/install_nginx.sh"], "commandToExecute": "./install_nginx.sh" }'
277277
278278
done
279279
```

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

Lines changed: 2 additions & 2 deletions
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: 7/14/2018
1212
ms.author: victorh
1313
ms.custom: mvc
1414
#Customer intent: As an IT administrator, I want to use Azure CLI to set up routing of web traffic to specific pools of servers based on the URL that the customer uses, so I can ensure my customers have the most efficient route to the information they need.
@@ -224,7 +224,7 @@ for i in `seq 1 3`; do
224224
--name CustomScript \
225225
--resource-group myResourceGroupAG \
226226
--vmss-name myvmss$i \
227-
--settings '{ "fileUris": ["https://raw.githubusercontent.com/davidmu1/samplescripts/master/install_nginx.sh"], "commandToExecute": "./install_nginx.sh" }'
227+
--settings '{ "fileUris": ["https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/install_nginx.sh"], "commandToExecute": "./install_nginx.sh" }'
228228
done
229229
```
230230

0 commit comments

Comments
 (0)