Skip to content

Commit eaf8269

Browse files
authored
Updated app gateway portal quickstart readme
- Added step on setting a priority during routing rule setup - Updated backend setting language (changed from 'HTTP Setting') - Minor additional updates
1 parent 7794b20 commit eaf8269

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

articles/application-gateway/quick-create-portal.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: 'Quickstart: Direct web traffic using the portal'
33
titleSuffix: Azure Application Gateway
44
description: In this quickstart, you learn how to use the Azure portal to create an Azure Application Gateway that directs web traffic to virtual machines in a backend pool.
55
services: application-gateway
6-
author: greg-lindsay
7-
ms.author: greglin
8-
ms.date: 06/10/2022
6+
author: ryanpfalz
7+
ms.author: ryanpfalz
8+
ms.date: 10/13/2022
99
ms.topic: quickstart
1010
ms.service: application-gateway
1111
ms.custom: mvc, mode-ui
@@ -15,9 +15,9 @@ ms.custom: mvc, mode-ui
1515

1616
In this quickstart, you use the Azure portal to create an [Azure Application Gateway](overview.md) and test it to make sure it works correctly. You will assign listeners to ports, create rules, and add resources to a backend pool. For the sake of simplicity, a simple setup is used with a public front-end IP address, a basic listener to host a single site on the application gateway, a basic request routing rule, and two virtual machines (VMs) in the backend pool.
1717

18-
:::image type="content" source="media/quick-create-portal/application-gateway-qs-resources.png" alt-text="application gateway resources":::
18+
![Quickstart setup](./media/quick-create-portal/application-gateway-qs-resources.png)
1919

20-
For more information about the components of an application gateway, see [Application gateway components](application-gateway-components.md).
20+
For more information about the components of an application gateway, see [Application gateway components](application-gateway-components.md).
2121

2222
You can also complete this quickstart using [Azure PowerShell](quick-create-powershell.md) or [Azure CLI](quick-create-cli.md).
2323

@@ -29,10 +29,10 @@ Sign in to the [Azure portal](https://portal.azure.com) with your Azure account.
2929

3030
## Create an application gateway
3131

32-
You'll create the application gateway using the tabs on the **Create an application gateway** page.
32+
You'll create the application gateway using the tabs on the **Create application gateway** page.
3333

34-
1. On the Azure portal menu or from the **Home** page, select **Create a resource**. The **New** window appears.
35-
2. Select **Networking** and then select **Application Gateway** in the **Featured** list.
34+
1. On the Azure portal menu or from the **Home** page, select **Create a resource**.
35+
2. Under **Categories**, select **Networking** and then select **Application Gateway** in the **Popular Azure services** list.
3636

3737
### Basics tab
3838

@@ -43,7 +43,7 @@ You'll create the application gateway using the tabs on the **Create an applicat
4343

4444
![Create new application gateway: Basics](./media/application-gateway-create-gateway-portal/application-gateway-create-basics.png)
4545

46-
2. For Azure to communicate between the resources that you create, it needs a virtual network. You can either create a new virtual network or use an existing one. In this example, you'll create a new virtual network at the same time that you create the application gateway. Application Gateway instances are created in separate subnets. You create two subnets in this example: one for the application gateway, and another for the backend servers.
46+
2. For Azure to communicate between the resources that you create, a virtual network is needed. You can either create a new virtual network or use an existing one. In this example, you'll create a new virtual network at the same time that you create the application gateway. Application Gateway instances are created in separate subnets. You create two subnets in this example: One for the application gateway, and another for the backend servers.
4747

4848
> [!NOTE]
4949
> [Virtual network service endpoint policies](../virtual-network/virtual-network-service-endpoint-policies-overview.md) are currently not supported in an Application Gateway subnet.
@@ -52,7 +52,7 @@ You'll create the application gateway using the tabs on the **Create an applicat
5252

5353
- **Name**: Enter *myVNet* for the name of the virtual network.
5454

55-
- **Subnet name** (Application Gateway subnet): The **Subnets** grid will show a subnet named *Default*. Change the name of this subnet to *myAGSubnet*.<br>The application gateway subnet can contain only application gateways. No other resources are allowed.
55+
- **Subnet name** (Application Gateway subnet): The **Subnets** grid will show a subnet named *default*. Change the name of this subnet to *myAGSubnet*.<br>The application gateway subnet can contain only application gateways. No other resources are allowed.
5656

5757
- **Subnet name** (backend server subnet): In the second row of the **Subnets** grid, enter *myBackendSubnet* in the **Subnet name** column.
5858

@@ -99,7 +99,10 @@ On the **Configuration** tab, you'll connect the frontend and backend pool you c
9999

100100
1. Select **Add a routing rule** in the **Routing rules** column.
101101

102-
2. In the **Add a routing rule** window that opens, enter *myRoutingRule* for the **Rule name**.
102+
2. In the **Add a routing rule** window that opens, enter the following values for Rule name and Priority:
103+
104+
- **Rule name**: Enter *myRoutingRule* for the name of the rule.
105+
- **Priority**: The priority value should be between 1 and 20000 (where 1 represents highest priority and 20000 represents lowest) - for the purposes of this quickstart, enter *100* for the priority.
103106

104107
3. A routing rule requires a listener. On the **Listener** tab within the **Add a routing rule** window, enter the following values for the listener:
105108

@@ -112,9 +115,9 @@ On the **Configuration** tab, you'll connect the frontend and backend pool you c
112115

113116
4. On the **Backend targets** tab, select **myBackendPool** for the **Backend target**.
114117

115-
5. For the **HTTP setting**, select **Add new** to add a new HTTP setting. The HTTP setting will determine the behavior of the routing rule. In the **Add an HTTP setting** window that opens, enter *myHTTPSetting* for the **HTTP setting name** and *80* for the **Backend port**. Accept the default values for the other settings in the **Add an HTTP setting** window, then select **Add** to return to the **Add a routing rule** window.
118+
5. For the **Backend setting**, select **Add new** to add a new Backend setting. The Backend setting will determine the behavior of the routing rule. In the **Add Backend setting** window that opens, enter *myBackendSetting* for the **Backend settings name** and *80* for the **Backend port**. Accept the default values for the other settings in the **Add Backend setting** window, then select **Add** to return to the **Add a routing rule** window.
116119

117-
![Create new application gateway: HTTP setting](./media/application-gateway-create-gateway-portal/application-gateway-create-httpsetting.png)
120+
![Create new application gateway: HTTP setting](./media/application-gateway-create-gateway-portal/application-gateway-create-backendsetting.png)
118121

119122
6. On the **Add a routing rule** window, select **Add** to save the routing rule and return to the **Configuration** tab.
120123

0 commit comments

Comments
 (0)