Skip to content

Commit a80b8c3

Browse files
committed
acro fixes
1 parent cfb0360 commit a80b8c3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/web-application-firewall/ag/application-gateway-web-application-firewall-portal.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Sign in to the [Azure portal](https://portal.azure.com).
5555

5656
:::image type="content" source="../media/application-gateway-web-application-firewall-portal/application-gateway-create-basics.png" alt-text="Screenshot of Create new application gateway: Basics tab." lightbox="../media/application-gateway-web-application-firewall-portal/application-gateway-create-basics.png":::
5757

58-
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 then later add another for the backend servers.
58+
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 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 then later add another for the backend servers.
5959

6060
Under **Configure virtual network**, select **Create new** to create a new virtual network. In the **Create virtual network** window that opens, enter the following values to create the virtual network and a subnet:
6161

@@ -64,7 +64,7 @@ Sign in to the [Azure portal](https://portal.azure.com).
6464
- **Name**: Enter *myVNet* for the name of the virtual network.
6565
- **Address space** : Accept the **10.0.0.0/16** address range.
6666

67-
- **Subnet name** (Application Gateway subnet): The **Subnets** area shows a subnet named *Default*. Change the name of this subnet to *myAGSubnet*, and leave the default IPv4 Adddress range of **10.0.0.0/24**.<br>The application gateway subnet can contain only application gateways. No other resources are allowed.
67+
- **Subnet name** (Application Gateway subnet): The **Subnets** area shows a subnet named *Default*. Change the name of this subnet to *myAGSubnet*, and leave the default IPv4 Address range of **10.0.0.0/24**.<br>The application gateway subnet can contain only application gateways. No other resources are allowed.
6868

6969
Select **OK** to close the **Create virtual network** window and save the virtual network settings.
7070

@@ -74,7 +74,7 @@ Sign in to the [Azure portal](https://portal.azure.com).
7474

7575
### Frontends tab
7676

77-
1. On the **Frontends** tab, verify **Frontend IP address type** is set to **Public**. <br>You can configure the Frontend IP to be **Public** or **Both** as per your use case. In this example, you'll choose a Public Frontend IP.
77+
1. On the **Frontends** tab, verify **Frontend IP address type** is set to **Public**. <br>You can configure the Frontend IP to be **Public** or **Both** as per your use case. In this example, you choose a Public Frontend IP.
7878
> [!NOTE]
7979
> For the Application Gateway v2 SKU, **Public** and **Both** Frontend IP address types are supported today. **Private** frontend IP configuration only is not currently supported.
8080
@@ -86,7 +86,7 @@ Sign in to the [Azure portal](https://portal.azure.com).
8686

8787
### Backends tab
8888

89-
The backend pool is used to route requests to the backend servers that serve the request. Backend pools can be composed of NICs, virtual machine scale sets, public IPs, internal IPs, fully qualified domain names (FQDN), and multi-tenant back-ends like Azure App Service. In this example, you'll create an empty backend pool with your application gateway and then later add backend targets to the backend pool.
89+
The backend pool is used to route requests to the backend servers that serve the request. Backend pools can be composed of NICs, virtual machine scale sets, public IPs, internal IPs, fully qualified domain names (FQDN), and multitenant back-ends like Azure App Service. In this example, you create an empty backend pool with your application gateway and then later add backend targets to the backend pool.
9090

9191
1. On the **Backends** tab, select **Add a backend pool**.
9292

@@ -103,7 +103,7 @@ The backend pool is used to route requests to the backend servers that serve the
103103

104104
### Configuration tab
105105

106-
On the **Configuration** tab, you'll connect the frontend and backend pool you created using a routing rule.
106+
On the **Configuration** tab, you connect the frontend and backend pool you created using a routing rule.
107107

108108
1. Select **Add a routing rule** in the **Routing rules** column.
109109

@@ -133,7 +133,7 @@ On the **Configuration** tab, you'll connect the frontend and backend pool you c
133133

134134
### Review + create tab
135135

136-
Review the settings on the **Review + create** tab, and then select **Create** to create the virtual network, the public IP address, and the application gateway. It may take several minutes for Azure to create the application gateway.
136+
Review the settings on the **Review + create** tab, and then select **Create** to create the virtual network, the public IP address, and the application gateway. It might take several minutes for Azure to create the application gateway.
137137

138138
Wait until the deployment finishes successfully before moving on to the next section.
139139

@@ -148,7 +148,7 @@ Wait until the deployment finishes successfully before moving on to the next sec
148148

149149
## Add backend targets
150150

151-
In this example, you'll use virtual machines as the target backend. You can either use existing virtual machines or create new ones. You'll create two virtual machines that Azure uses as backend servers for the application gateway.
151+
In this example, you use virtual machines as the target backend. You can either use existing virtual machines or create new ones. You create two virtual machines that Azure uses as backend servers for the application gateway.
152152

153153
To do this, you'll:
154154

@@ -185,7 +185,7 @@ In this example, you install NGINX on the virtual machines only to verify Azure
185185
1. Open a Bash Cloud Shell. To do so, select the **Cloud Shell** icon from the top navigation bar of the Azure portal and then select **Bash** from the drop-down list.
186186

187187
:::image type="content" source="../media/application-gateway-web-application-firewall-portal/bash-shell.png" alt-text="Screenshot showing the Bash Cloud Shell.":::
188-
1. Ensure your bash session is set for your suscription:
188+
1. Ensure your bash session is set for your subscription:
189189

190190
`account set --subscription "<your subscription name>"`
191191

@@ -201,7 +201,7 @@ In this example, you install NGINX on the virtual machines only to verify Azure
201201
--settings '{ "fileUris": ["https://raw.githubusercontent.com/Azure/azure-docs-powershell-samples/master/application-gateway/iis/install_nginx.sh"], "commandToExecute": "./install_nginx.sh" }'
202202
```
203203

204-
3. Create a second virtual machine and install NGINX using these steps that you previously completed. Use *myVM2* for the virtual machine name and for the **--vm-name** setting of the cmdlet.
204+
3. Create a second virtual machine and install NGINX using these steps that you previously completed. Use *myVM2* for the virtual machine name and for the `--vm-name` setting of the cmdlet.
205205

206206
### Add backend servers to backend pool
207207

0 commit comments

Comments
 (0)