You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
138
138
139
139
We will connect to the backend using HTTPS.
140
140
@@ -149,7 +149,7 @@ We will connect to the backend using HTTPS.
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.
153
153
154
154
1. Under **HTTP Settings**, select an existing HTTP setting or add a new one.
155
155
2. When creating a new HTTP Setting, give it a name
To accept traffic we need to configure a Listener. For more info on this see [Application Gateway listener configuration](configuration-listeners.md).
210
210
@@ -302,13 +302,13 @@ if ($listener -eq $null){
302
302
---
303
303
## Configure request routing rule
304
304
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.
306
306
307
307
### [Azure portal](#tab/azure-portal)
308
308
309
309
1. Under "Rules", click to add a new "Request routing rule"
310
310
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
312
312
1. Under "Backend targets", choose the Backend Pool in which App Service has been configured
313
313
1. Configure the HTTP settings with which Application Gateway should connect to the App Service backend
0 commit comments