Skip to content

Commit 529a000

Browse files
Update configure-web-app.md
1 parent 3f76f83 commit 529a000

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/application-gateway/configure-web-app.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ In this article you'll learn how to:
4545
- Configure DNS
4646
- Add App Service as backend pool to the Application Gateway
4747
- Configure HTTP Settings for the connection to App Service
48-
- Configure a HTTP Listener
48+
- Configure an HTTP Listener
4949
- Configure a Request Routing Rule
5050

5151
## Prerequisites
@@ -134,7 +134,7 @@ Set-AzApplicationGateway -ApplicationGateway $gw
134134

135135
### [Azure portal](#tab/azure-portal/customdomain)
136136

137-
A HTTP Setting is required that instructs Application Gateway to access the App Service backend using the **custom domain name**. The HTTP Setting will by default use the [default health probe](./application-gateway-probe-overview.md#default-health-probe). While default health probes will forward requests with the hostname in which traffic is received, the health probes will utilize 127.0.0.1 as the hostname to the Backend Pool since no hostname has explicitly been defined. For this reason, we need to create a [custom health probe](./application-gateway-probe-overview.md#custom-health-probe) that is configured with the correct custom domain name as its host name.
137+
An HTTP Setting is required that instructs Application Gateway to access the App Service backend using the **custom domain name**. The HTTP Setting will by default use the [default health probe](./application-gateway-probe-overview.md#default-health-probe). While default health probes will forward requests with the hostname in which traffic is received, the health probes will utilize 127.0.0.1 as the hostname to the Backend Pool since no hostname has explicitly been defined. For this reason, we need to create a [custom health probe](./application-gateway-probe-overview.md#custom-health-probe) that is configured with the correct custom domain name as its host name.
138138

139139
We will connect to the backend using HTTPS.
140140

@@ -149,7 +149,7 @@ We will connect to the backend using HTTPS.
149149

150150
### [Azure portal](#tab/azure-portal/defaultdomain)
151151

152-
A HTTP Setting is required that instructs Application Gateway to access the App Service backend using the **default ("azurewebsites.net") domain name**. To do so, the HTTP Setting will explicitly override the host name.
152+
An HTTP Setting is required that instructs Application Gateway to access the App Service backend using the **default ("azurewebsites.net") domain name**. To do so, the HTTP Setting will explicitly override the host name.
153153

154154
1. Under **HTTP Settings**, select an existing HTTP setting or add a new one.
155155
2. When creating a new HTTP Setting, give it a name
@@ -204,7 +204,7 @@ Set-AzApplicationGateway -ApplicationGateway $gw
204204

205205
---
206206

207-
## Configure a HTTP listener
207+
## Configure an HTTP listener
208208

209209
To accept traffic we need to configure a Listener. For more info on this see [Application Gateway listener configuration](configuration-listeners.md).
210210

@@ -302,13 +302,13 @@ if ($listener -eq $null){
302302
---
303303
## Configure request routing rule
304304

305-
Using the earlier configured Backend Pool and the HTTP Settings, the request routing rule can be set up to take traffic from a listener and route it to the Backend Pool using the HTTP Settings. For this, make sure you have a HTTP or HTTPS listener available that is not already bound to an existing routing rule.
305+
Using the earlier configured Backend Pool and the HTTP Settings, the request routing rule can be set up to take traffic from a listener and route it to the Backend Pool using the HTTP Settings. For this, make sure you have an HTTP or HTTPS listener available that is not already bound to an existing routing rule.
306306

307307
### [Azure portal](#tab/azure-portal)
308308

309309
1. Under "Rules", click to add a new "Request routing rule"
310310
1. Provide the rule with a name
311-
1. Select a HTTP or HTTPS listener that is not bound yet to an existing routing rule
311+
1. Select an HTTP or HTTPS listener that is not bound yet to an existing routing rule
312312
1. Under "Backend targets", choose the Backend Pool in which App Service has been configured
313313
1. Configure the HTTP settings with which Application Gateway should connect to the App Service backend
314314
1. Select "Add" to save this configuration

0 commit comments

Comments
 (0)