Skip to content

Commit fe806de

Browse files
committed
no longer tutorials
1 parent 3b739c6 commit fe806de

File tree

4 files changed

+32
-69
lines changed

4 files changed

+32
-69
lines changed

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

+8-23
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,18 @@ title: Create an application gateway that hosts multiple web sites - Azure CLI
33
description: Learn how to create an application gateway that hosts multiple web sites using the Azure CLI.
44
services: application-gateway
55
author: vhorne
6-
manager: jpconnock
7-
86
ms.service: application-gateway
97
ms.topic: tutorial
10-
ms.workload: infrastructure-services
11-
ms.date: 7/14/2018
8+
ms.date: 5/20/2019
129
ms.author: victorh
1310
ms.custom: mvc
1411
#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 access the web information they need.
1512
---
16-
# Tutorial: Create an application gateway that hosts multiple web sites using the Azure CLI
13+
# Create an application gateway that hosts multiple web sites using the Azure CLI
1714

18-
You can use the Azure CLI to [configure the hosting of multiple web sites](multiple-site-overview.md) when you create an [application gateway](overview.md). In this tutorial, you define backend address pools using virtual machines scale sets. You then configure listeners and rules based on domains that you own to make sure web traffic arrives at the appropriate servers in the pools. This tutorial assumes that you own multiple domains and uses examples of *www\.contoso.com* and *www\.fabrikam.com*.
15+
You can use the Azure CLI to [configure the hosting of multiple web sites](multiple-site-overview.md) when you create an [application gateway](overview.md). In this article, you define backend address pools using virtual machines scale sets. You then configure listeners and rules based on domains that you own to make sure web traffic arrives at the appropriate servers in the pools. This article assumes that you own multiple domains and uses examples of *www\.contoso.com* and *www\.fabrikam.com*.
1916

20-
In this tutorial, you learn how to:
17+
In this article, you learn how to:
2118

2219
> [!div class="checklist"]
2320
> * Set up the network
@@ -29,8 +26,7 @@ In this tutorial, you learn how to:
2926
3027
![Multi-site routing example](./media/tutorial-multiple-sites-cli/scenario.png)
3128

32-
33-
If you prefer, you can complete this tutorial using [Azure PowerShell](tutorial-multiple-sites-powershell.md).
29+
If you prefer, you can complete this procedure using [Azure PowerShell](tutorial-multiple-sites-powershell.md).
3430

3531
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
3632

@@ -44,11 +40,11 @@ A resource group is a logical container into which Azure resources are deployed
4440

4541
The following example creates a resource group named *myResourceGroupAG* in the *eastus* location.
4642

47-
```azurecli-interactive
43+
```azurecli-interactive
4844
az group create --name myResourceGroupAG --location eastus
4945
```
5046

51-
## Create network resources
47+
## Create network resources
5248

5349
Create the virtual network and the subnet named *myAGSubnet* using [az network vnet create](/cli/azure/network/vnet). You can then add the subnet that's needed by the backend servers using [az network vnet subnet create](/cli/azure/network/vnet/subnet). Create the public IP address named *myAGPublicIPAddress* using [az network public-ip create](/cli/azure/network/public-ip).
5450

@@ -250,15 +246,4 @@ az group delete --name myResourceGroupAG --location eastus
250246

251247
## Next steps
252248

253-
In this tutorial, you learned how to:
254-
255-
> [!div class="checklist"]
256-
> * Set up the network
257-
> * Create an application gateway
258-
> * Create backend listeners
259-
> * Create routing rules
260-
> * Create virtual machine scale sets with the backend pools
261-
> * Create a CNAME record in your domain
262-
263-
> [!div class="nextstepaction"]
264-
> [Create an application gateway with URL path-based routing rules](./tutorial-url-route-cli.md)
249+
* [Create an application gateway with URL path-based routing rules](./tutorial-url-route-cli.md)

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

+7-27
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,17 @@ title: Enable web application firewall - Azure CLI
33
description: Learn how to restrict web traffic with a web application firewall on an application gateway using the Azure CLI.
44
services: application-gateway
55
author: vhorne
6-
manager: jpconnock
7-
86
ms.service: application-gateway
97
ms.topic: tutorial
10-
ms.workload: infrastructure-services
11-
ms.date: 7/14/2018
8+
ms.date: 5/20/2019
129
ms.author: victorh
1310
ms.custom: mvc
1411
---
1512
# Enable web application firewall using the Azure CLI
1613

17-
> [!div class="op_single_selector"]
18-
>
19-
> - [Azure portal](application-gateway-web-application-firewall-portal.md)
20-
> - [PowerShell](tutorial-restrict-web-traffic-powershell.md)
21-
> - [Azure CLI](tutorial-restrict-web-traffic-cli.md)
22-
>
23-
>
24-
25-
You can restrict traffic on an [application gateway](overview.md) with a [web application firewall](waf-overview.md) (WAF). The WAF uses [OWASP](https://www.owasp.org/index.php/Category:OWASP_ModSecurity_Core_Rule_Set_Project) rules to protect your application. These rules include protection against attacks such as SQL injection, cross-site scripting attacks, and session hijacks.
14+
You can restrict traffic on an [application gateway](overview.md) with a [web application firewall](waf-overview.md) (WAF). The WAF uses [OWASP](https://www.owasp.org/index.php/Category:OWASP_ModSecurity_Core_Rule_Set_Project) rules to protect your application. These rules include protection against attacks such as SQL injection, cross-site scripting attacks, and session hijacks.
2615

27-
In this tutorial, you learn how to:
16+
In this article, you learn how to:
2817

2918
> [!div class="checklist"]
3019
> * Set up the network
@@ -34,13 +23,13 @@ In this tutorial, you learn how to:
3423
3524
![Web application firewall example](./media/tutorial-restrict-web-traffic-cli/scenario-waf.png)
3625

37-
If you prefer, you can complete this tutorial using [Azure PowerShell](tutorial-restrict-web-traffic-powershell.md).
26+
If you prefer, you can complete this procedure using [Azure PowerShell](tutorial-restrict-web-traffic-powershell.md).
3827

3928
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
4029

4130
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
4231

43-
If you choose to install and use the CLI locally, this tutorial requires that you are running the Azure CLI version 2.0.4 or later. To find the version, run `az --version`. If you need to install or upgrade, see [Install Azure CLI]( /cli/azure/install-azure-cli).
32+
If you choose to install and use the CLI locally, this article requires that you are running the Azure CLI version 2.0.4 or later. To find the version, run `az --version`. If you need to install or upgrade, see [Install Azure CLI]( /cli/azure/install-azure-cli).
4433

4534
## Create a resource group
4635

@@ -143,7 +132,7 @@ az vmss extension set \
143132

144133
## Create a storage account and configure diagnostics
145134

146-
In this tutorial, the application gateway uses a storage account to store data for detection and prevention purposes. You could also use Azure Monitor logs or Event Hub to record data.
135+
In this article, the application gateway uses a storage account to store data for detection and prevention purposes. You could also use Azure Monitor logs or Event Hub to record data.
147136

148137
### Create a storage account
149138

@@ -196,13 +185,4 @@ az group delete --name myResourceGroupAG --location eastus
196185

197186
## Next steps
198187

199-
In this tutorial, you learned how to:
200-
201-
> [!div class="checklist"]
202-
> * Set up the network
203-
> * Create an application gateway with WAF enabled
204-
> * Create a virtual machine scale set
205-
> * Create a storage account and configure diagnostics
206-
207-
> [!div class="nextstepaction"]
208-
> [Create an application gateway with SSL termination](./tutorial-ssl-cli.md)
188+
* [Create an application gateway with SSL termination](./tutorial-ssl-cli.md)

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

+7-8
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,33 @@ manager: jpconnock
88
ms.service: application-gateway
99
ms.topic: tutorial
1010
ms.workload: infrastructure-services
11-
ms.date: 7/14/2018
11+
ms.date: 5/20/2019
1212
ms.author: victorh
1313
ms.custom: mvc
1414
---
15-
# Tutorial: Create an application gateway with SSL termination using the Azure CLI
15+
# Create an application gateway with SSL termination using the Azure CLI
1616

1717
You can use the Azure CLI to create an [application gateway](overview.md) with a certificate for [SSL termination](ssl-overview.md) that uses a [virtual machine scale set](../virtual-machine-scale-sets/virtual-machine-scale-sets-overview.md) for backend servers. In this example, the scale set contains two virtual machine instances that are added to the default backend pool of the application gateway.
1818

19-
In this tutorial, you learn how to:
19+
In this article, you learn how to:
2020

2121
> [!div class="checklist"]
2222
> * Create a self-signed certificate
2323
> * Set up a network
2424
> * Create an application gateway with the certificate
2525
> * Create a virtual machine scale set with the default backend pool
2626
27-
If you prefer, you can complete this tutorial using [Azure PowerShell](tutorial-ssl-powershell.md).
27+
If you prefer, you can complete this procedure using [Azure PowerShell](tutorial-ssl-powershell.md).
2828

2929
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
3030

3131
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
3232

33-
If you choose to install and use the CLI locally, this tutorial requires you to run the Azure CLI version 2.0.4 or later. To find the version, run `az --version`. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
33+
If you choose to install and use the CLI locally, this article requires you to run the Azure CLI version 2.0.4 or later. To find the version, run `az --version`. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
3434

3535
## Create a self-signed certificate
3636

37-
For production use, you should import a valid certificate signed by trusted provider. For this tutorial, you create a self-signed certificate and pfx file using the openssl command.
37+
For production use, you should import a valid certificate signed by trusted provider. For this article, you create a self-signed certificate and pfx file using the openssl command.
3838

3939
```azurecli-interactive
4040
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout privateKey.key -out appgwcert.crt
@@ -178,5 +178,4 @@ az group delete --name myResourceGroupAG --location eastus
178178

179179
## Next steps
180180

181-
> [!div class="nextstepaction"]
182-
> [Create an application gateway that hosts multiple web sites](./tutorial-multiple-sites-cli.md)
181+
* [Create an application gateway that hosts multiple web sites](./tutorial-multiple-sites-cli.md)

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

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
2-
title: Tutorial - Route web traffic based on the URL - Azure CLI
3-
description: In this tutorial, learn how to route web traffic based on the URL to specific scalable pools of servers using the Azure CLI.
2+
title: Route web traffic based on the URL - Azure CLI
3+
description: In this article, learn how to route web traffic based on the URL to specific scalable pools of servers using the Azure CLI.
44
services: application-gateway
55
author: vhorne
66
ms.service: application-gateway
77
ms.topic: tutorial
8-
ms.date: 10/25/2018
8+
ms.date: 5/20/2019
99
ms.author: victorh
1010
ms.custom: mvc
1111
#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.
1212
---
13-
# Tutorial: Route web traffic based on the URL using the Azure CLI
13+
# Route web traffic based on the URL using the Azure CLI
1414

15-
As an IT administrator managing web traffic, you want to help your customers or users get the information they need as quickly as possible. One way you can optimize their experience is by routing different kinds of web traffic to different server resources. This tutorial shows you how to use the Azure CLI to set up and configure Application Gateway routing for different types of traffic from your application. The routing then directs the traffic to different server pools based on the URL.
15+
As an IT administrator managing web traffic, you want to help your customers or users get the information they need as quickly as possible. One way you can optimize their experience is by routing different kinds of web traffic to different server resources. This article shows you how to use the Azure CLI to set up and configure Application Gateway routing for different types of traffic from your application. The routing then directs the traffic to different server pools based on the URL.
1616

1717
![URL routing example](./media/tutorial-url-route-cli/scenario.png)
1818

19-
In this tutorial, you learn how to:
19+
In this article, you learn how to:
2020

2121
> [!div class="checklist"]
2222
> * Create a resource group for the network resources you’ll need
@@ -26,13 +26,13 @@ In this tutorial, you learn how to:
2626
> * Create a scale set for each pool so the pool can automatically scale
2727
> * Run a test so you can verify that the different types of traffic go to the correct pool
2828
29-
If you prefer, you can complete this tutorial using [Azure PowerShell](tutorial-url-route-powershell.md) or the [Azure portal](create-url-route-portal.md).
29+
If you prefer, you can complete this procedure using [Azure PowerShell](tutorial-url-route-powershell.md) or the [Azure portal](create-url-route-portal.md).
3030

3131
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
3232

3333
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
3434

35-
If you choose to install and use the CLI locally, this tutorial requires you to run the Azure CLI version 2.0.4 or later. To find the version, run `az --version`. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
35+
If you choose to install and use the CLI locally, this article requires you to run the Azure CLI version 2.0.4 or later. To find the version, run `az --version`. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
3636

3737
## Create a resource group
3838

@@ -177,7 +177,7 @@ az network application-gateway rule create \
177177

178178
## Create VM scale sets
179179

180-
In this tutorial, you create three virtual machine scale sets that support the three backend pools you created. You create scale sets named *myvmss1*, *myvmss2*, and *myvmss3*. Each scale set contains two virtual machine instances where you install NGINX.
180+
In this article, you create three virtual machine scale sets that support the three backend pools you created. You create scale sets named *myvmss1*, *myvmss2*, and *myvmss3*. Each scale set contains two virtual machine instances where you install NGINX.
181181

182182
```azurecli-interactive
183183
for i in `seq 1 3`; do
@@ -259,5 +259,4 @@ az group delete --name myResourceGroupAG --location eastus
259259

260260
## Next steps
261261

262-
> [!div class="nextstepaction"]
263-
> [Create an application gateway with URL path-based redirection](./tutorial-url-redirect-cli.md)
262+
* [Create an application gateway with URL path-based redirection](./tutorial-url-redirect-cli.md)

0 commit comments

Comments
 (0)