Skip to content

Commit 467305a

Browse files
authored
Merge pull request #108319 from vhorne/mvc-audit1
remove tutorial references
2 parents 0efdb3a + f915dff commit 467305a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ description: Learn how to create an application gateway with URL path-based redi
44
services: application-gateway
55
author: vhorne
66
ms.service: application-gateway
7-
ms.date: 11/14/2019
7+
ms.date: 03/19/2020
88
ms.author: victorh
9-
ms.topic: tutorial
9+
ms.topic: conceptual
1010
#Customer intent: As an IT administrator, I want to use Azure PowerShell 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.
1111
---
1212

1313
# Create an application gateway with URL path-based redirection using Azure PowerShell
1414

15-
You can use Azure PowerShell to configure [URL-based routing rules](application-gateway-url-route-overview.md) when you create an [application gateway](application-gateway-introduction.md). In this tutorial, you create backend pools using [virtual machine scale sets](../virtual-machine-scale-sets/virtual-machine-scale-sets-overview.md). You then create URL routing rules that make sure web traffic is redirected to the appropriate backend pool.
15+
You can use Azure PowerShell to configure [URL-based routing rules](application-gateway-url-route-overview.md) when you create an [application gateway](application-gateway-introduction.md). In this article, you create backend pools using [virtual machine scale sets](../virtual-machine-scale-sets/virtual-machine-scale-sets-overview.md). You then create URL routing rules that make sure web traffic is redirected to the appropriate backend pool.
1616

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

1919
> [!div class="checklist"]
2020
> * Set up the network
@@ -26,15 +26,15 @@ The following example shows site traffic coming from both ports 8080 and 8081 an
2626

2727
![URL routing example](./media/tutorial-url-redirect-powershell/scenario.png)
2828

29-
If you prefer, you can complete this tutorial using [Azure CLI](tutorial-url-redirect-cli.md).
29+
If you prefer, you can complete this procedure using [Azure CLI](tutorial-url-redirect-cli.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 [updated-for-az](../../includes/updated-for-az.md)]
3434

3535
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
3636

37-
If you choose to install and use the PowerShell locally, this tutorial requires the Azure PowerShell module version 1.0.0 or later. To find the version, run `Get-Module -ListAvailable Az` . If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-az-ps). If you are running PowerShell locally, you also need to run `Connect-AzAccount` to create a connection with Azure.
37+
If you choose to install and use the PowerShell locally, this procedure requires the Azure PowerShell module version 1.0.0 or later. To find the version, run `Get-Module -ListAvailable Az` . If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-az-ps). If you are running PowerShell locally, you also need to run `Connect-AzAccount` to create a connection with Azure.
3838

3939
## Create a resource group
4040

@@ -125,7 +125,7 @@ $poolSettings = New-AzApplicationGatewayBackendHttpSettings `
125125

126126
### Create the default listener and rule
127127

128-
A listener is required to enable the application gateway to route traffic appropriately to a backend pool. In this tutorial, you create multiple listeners. The first basic listener expects traffic at the root URL. The other listeners expect traffic at specific URLs, such as `http://52.168.55.24:8080/images/` or `http://52.168.55.24:8081/video/`.
128+
A listener is required to enable the application gateway to route traffic appropriately to a backend pool. In this article, you create multiple listeners. The first basic listener expects traffic at the root URL. The other listeners expect traffic at specific URLs, such as `http://52.168.55.24:8080/images/` or `http://52.168.55.24:8081/video/`.
129129

130130
Create a listener named *defaultListener* using [New-AzApplicationGatewayHttpListener](/powershell/module/az.network/new-azapplicationgatewayhttplistener) with the frontend configuration and frontend port that you previously created. A rule is required for the listener to know which backend pool to use for incoming traffic. Create a basic rule named *rule1* using [New-AzApplicationGatewayRequestRoutingRule](/powershell/module/az.network/new-azapplicationgatewayrequestroutingrule).
131131

0 commit comments

Comments
 (0)