Skip to content

Commit 4028867

Browse files
committed
author and terminology on all docs
1 parent 3537816 commit 4028867

File tree

70 files changed

+276
-276
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+276
-276
lines changed

articles/application-gateway/application-gateway-components.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
title: Application gateway components
33
description: This article provides information about the various components in an application gateway
44
services: application-gateway
5-
author: surajmb
5+
author: greg-lindsay
66
ms.service: application-gateway
77
ms.topic: conceptual
88
ms.date: 08/21/2020
9-
ms.author: surmb
9+
ms.author: greglin
1010
---
1111

1212
# Application gateway components
@@ -79,7 +79,7 @@ After you create a listener, you associate it with a request routing rule. This
7979

8080
## Request routing rules
8181

82-
A request routing rule is a key component of an application gateway because it determines how to route traffic on the listener. The rule binds the listener, the back-end server pool, and the backend HTTP settings.
82+
A request routing rule is a key component of an application gateway because it determines how to route traffic on the listener. The rule binds the listener, the backend server pool, and the backend HTTP settings.
8383

8484
When a listener accepts a request, the request routing rule forwards the request to the backend or redirects it elsewhere. If the request is forwarded to the backend, the request routing rule defines which backend server pool to forward it to. The request routing rule also determines if the headers in the request are to be rewritten. One listener can be attached to one rule.
8585

@@ -144,7 +144,7 @@ You can create different backend pools for different types of requests. For exam
144144

145145
By default, an application gateway monitors the health of all resources in its backend pool and automatically removes unhealthy ones. It then monitors unhealthy instances and adds them back to the healthy backend pool when they become available and respond to health probes.
146146

147-
In addition to using default health probe monitoring, you can also customize the health probe to suit your application's requirements. Custom probes allow more granular control over the health monitoring. When using custom probes, you can configure a custom hostname, URL path, probe interval, and how many failed responses to accept before marking the back-end pool instance as unhealthy, custom status codes and response body match, etc. We recommend that you configure custom probes to monitor the health of each backend pool.
147+
In addition to using default health probe monitoring, you can also customize the health probe to suit your application's requirements. Custom probes allow more granular control over the health monitoring. When using custom probes, you can configure a custom hostname, URL path, probe interval, and how many failed responses to accept before marking the backend pool instance as unhealthy, custom status codes and response body match, etc. We recommend that you configure custom probes to monitor the health of each backend pool.
148148

149149
For more information, see [Monitor the health of your application gateway](../application-gateway/application-gateway-probe-overview.md).
150150

articles/application-gateway/application-gateway-configure-listener-specific-ssl-policy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
title: Configure listener-specific SSL policies on Azure Application Gateway through portal
33
description: Learn how to configure listener-specific SSL policies on Application Gateway through portal
44
services: application-gateway
5-
author: mscatyao
5+
author: greg-lindsay
66
ms.service: application-gateway
77
ms.topic: how-to
88
ms.date: 02/18/2022
9-
ms.author: caya
9+
ms.author: greglin
1010
---
1111

1212
# Configure listener-specific SSL policies on Application Gateway through portal

articles/application-gateway/application-gateway-create-probe-classic-ps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Copy the following text to Notepad.
126126

127127
Edit the values between the parentheses for the configuration items. Save the file with extension .xml.
128128

129-
The following example shows how to use a configuration file to set up the application gateway to load balance HTTP traffic on public port 80 and send network traffic to back-end port 80 between two IP addresses by using a custom probe.
129+
The following example shows how to use a configuration file to set up the application gateway to load balance HTTP traffic on public port 80 and send network traffic to backend port 80 between two IP addresses by using a custom probe.
130130

131131
> [!IMPORTANT]
132132
> The protocol item Http or Https is case-sensitive.
@@ -142,9 +142,9 @@ The configuration parameters are:
142142
| **Host** and **Path** | Complete URL path that is invoked by the application gateway to determine the health of the instance. For example, if you have a website http:\//contoso.com/, then the custom probe can be configured for "http:\//contoso.com/path/custompath.htm" for probe checks to have a successful HTTP response.|
143143
| **Interval** | Configures the probe interval checks in seconds.|
144144
| **Timeout** | Defines the probe time-out for an HTTP response check.|
145-
| **UnhealthyThreshold** | The number of failed HTTP responses needed to flag the back-end instance as *unhealthy*.|
145+
| **UnhealthyThreshold** | The number of failed HTTP responses needed to flag the backend instance as *unhealthy*.|
146146

147-
The probe name is referenced in the \<BackendHttpSettings\> configuration to assign which back-end pool uses custom probe settings.
147+
The probe name is referenced in the \<BackendHttpSettings\> configuration to assign which backend pool uses custom probe settings.
148148

149149
## Add a custom probe to an existing application gateway
150150

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.author: greglin
1717
> * [Azure Resource Manager PowerShell](application-gateway-create-probe-ps.md)
1818
> * [Azure Classic PowerShell](application-gateway-create-probe-classic-ps.md)
1919
20-
In this article, you add a custom health probe to an existing application gateway through the Azure portal. Azure Application Gateway uses these health probes to monitor the health of the resources in the back-end pool.
20+
In this article, you add a custom health probe to an existing application gateway through the Azure portal. Azure Application Gateway uses these health probes to monitor the health of the resources in the backend pool.
2121

2222
## Before you begin
2323

@@ -44,7 +44,7 @@ Probes are configured in a two-step process through the portal. The first step i
4444
|**Name**|customProbe|This value is a friendly name given to the probe that is accessible in the portal.|
4545
|**Protocol**|HTTP or HTTPS | The protocol that the health probe uses. |
4646
|**Host**|i.e contoso.com|This value is the name of the virtual host (different from the VM host name) running on the application server. The probe is sent to \<protocol\>://\<host name\>:\<port\>/\<urlPath\> This can also be the private IP address of the server, or the public IP address, or the DNS entry of the public IP address. The probe will attempt to access the server when used with a file based path entry, and validate a specific file exists on the server as a health check.|
47-
|**Pick host name from backend HTTP settings**|Yes or No|Sets the *host* header in the probe to the host name from the HTTP settings to which this probe is associated. Specially required for multi-tenant backends such as Azure app service. [Learn more](./configuration-http-settings.md#pick-host-name-from-back-end-address)|
47+
|**Pick host name from backend HTTP settings**|Yes or No|Sets the *host* header in the probe to the host name from the HTTP settings to which this probe is associated. Specially required for multi-tenant backends such as Azure app service. [Learn more](./configuration-http-settings.md#pick-host-name-from-backend-address)|
4848
|**Pick port from backend HTTP settings**| Yes or No|Sets the *port* of the health probe to the port from HTTP settings to which this probe is associated. If you choose no, you can enter a custom destination port to use |
4949
|**Port**| 1-65535 | Custom port to be used for the health probes |
5050
|**Path**|/ or any valid path|The remainder of the full url for the custom probe. A valid path starts with '/'. For the default path of http:\//contoso.com, just use '/'. You can also input a server path to a file for a static health check instead of web based. File paths should be used while using public / private ip, or public ip dns entry as the hostname entry.|
@@ -55,11 +55,11 @@ Probes are configured in a two-step process through the portal. The first step i
5555
|**HTTP Settings**|selection from dropdown|Probe will get associated with the HTTP settings selected here and therefore, will monitor the health of that backend pool, which is associated with the selected HTTP setting. It will use the same port for the probe request as the one being used in the selected HTTP setting. You can only choose those HTTP settings, which aren't associated with any other custom probe. <br>The only HTTP settings that are available for association are those that have the same protocol as the protocol chosen in this probe configuration, and have the same state for the *Pick Host Name From Backend HTTP setting* switch.|
5656

5757
> [!IMPORTANT]
58-
> The probe will monitor health of the backend only when it's associated with one or more HTTP settings. It will monitor back-end resources of those back-end pools which are associated to the HTTP settings to which this probe is associated with. The probe request will be sent as \<protocol\>://\<hostName\>:\<port\>/\<urlPath\>.
58+
> The probe will monitor health of the backend only when it's associated with one or more HTTP settings. It will monitor backend resources of those backend pools which are associated to the HTTP settings to which this probe is associated with. The probe request will be sent as \<protocol\>://\<hostName\>:\<port\>/\<urlPath\>.
5959
6060
### Test backend health with the probe
6161

62-
After entering the probe properties, you can test the health of the back-end resources to verify that the probe configuration is correct and that the back-end resources are working as expected.
62+
After entering the probe properties, you can test the health of the backend resources to verify that the probe configuration is correct and that the backend resources are working as expected.
6363

6464
1. Select **Test** and note the result of the probe. The Application gateway tests the health of all the backend resources in the backend pools associated with the HTTP settings used for this probe.
6565

@@ -95,7 +95,7 @@ Probes are configured in a two-step process through the portal. The first step i
9595
|**Name**|customProbe|This value is a friendly name given to the probe that is accessible in the portal.|
9696
|**Protocol**|HTTP or HTTPS | The protocol that the health probe uses. |
9797
|**Host**|i.e contoso.com|This value is the name of the virtual host (different from the VM host name) running on the application server. The probe is sent to (protocol)://(host name):(port from httpsetting)/urlPath. This is applicable when multi-site is configured on Application Gateway. If the Application Gateway is configured for a single site, then enter '127.0.0.1'. You can also input a server path to a file for a static health check instead of web based. File paths should be used while using public / private ip, or public ip dns entry as the hostname entry.|
98-
|**Pick host name from backend HTTP settings**|Yes or No|Sets the *host* header in the probe to the host name of the back-end resource in the back-end pool associated with the HTTP Setting to which this probe is associated. Specially required for multi-tenant backends such as Azure app service. [Learn more](./configuration-http-settings.md#pick-host-name-from-back-end-address)|
98+
|**Pick host name from backend HTTP settings**|Yes or No|Sets the *host* header in the probe to the host name of the backend resource in the backend pool associated with the HTTP Setting to which this probe is associated. Specially required for multi-tenant backends such as Azure app service. [Learn more](./configuration-http-settings.md#pick-host-name-from-backend-address)|
9999
|**Path**|/ or any valid path|The remainder of the full url for the custom probe. A valid path starts with '/'. For the default path of http:\//contoso.com, just use '/' You can also input a server path to a file for a static health check instead of web based. File paths should be used while using public / private ip, or public ip dns entry as the hostname entry.|
100100
|**Interval (secs)**|30|How often the probe is run to check for health. It isn't recommended to set the lower than 30 seconds.|
101101
|**Timeout (secs)**|30|The amount of time the probe waits before timing out. If a valid response isn't received within this time-out period, the probe is marked as failed. The timeout interval needs to be high enough that an http call can be made to ensure the backend health page is available. The time-out value shouldn't be more than the ‘Interval’ value used in this probe setting or the ‘Request timeout’ value in the HTTP setting, which will be associated with this probe.|
@@ -118,7 +118,7 @@ Now that the probe has been created, it's time to add it to the gateway. Probe s
118118

119119
## Next steps
120120

121-
View the health of the backend resources as determined by the probe using the [backend health view](./application-gateway-diagnostics.md#back-end-health).
121+
View the health of the backend resources as determined by the probe using the [backend health view](./application-gateway-diagnostics.md#backend-health).
122122

123123
[1]: ./media/application-gateway-create-probe-portal/figure1.png
124124
[2]: ./media/application-gateway-create-probe-portal/figure2.png

articles/application-gateway/application-gateway-create-probe-ps.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ $vnet = New-AzVirtualNetwork -Name appgwvnet -ResourceGroupName appgw-rg -Locati
7171
$subnet = $vnet.Subnets[0]
7272
```
7373

74-
### Create a public IP address for the front-end configuration
74+
### Create a public IP address for the frontend configuration
7575

76-
Create a public IP resource **publicIP01** in resource group **appgw-rg** for the West US region. This example uses a public IP address for the front-end IP address of the application gateway. Application gateway requires the public IP address to have a dynamically created DNS name therefore the `-DomainNameLabel` cannot be specified during the creation of the public IP address.
76+
Create a public IP resource **publicIP01** in resource group **appgw-rg** for the West US region. This example uses a public IP address for the frontend IP address of the application gateway. Application gateway requires the public IP address to have a dynamically created DNS name therefore the `-DomainNameLabel` cannot be specified during the creation of the public IP address.
7777

7878
```powershell
7979
$publicip = New-AzPublicIpAddress -ResourceGroupName appgw-rg -Name publicIP01 -Location 'West US' -AllocationMethod Dynamic
@@ -97,7 +97,7 @@ You set up all configuration items before creating the application gateway. The
9797
# Creates an application gateway Frontend IP configuration named gatewayIP01
9898
$gipconfig = New-AzApplicationGatewayIPConfiguration -Name gatewayIP01 -Subnet $subnet
9999
100-
#Creates a back-end IP address pool named pool01 with IP addresses 134.170.185.46, 134.170.188.221, 134.170.185.50.
100+
#Creates a backend IP address pool named pool01 with IP addresses 134.170.185.46, 134.170.188.221, 134.170.185.50.
101101
$pool = New-AzApplicationGatewayBackendAddressPool -Name pool01 -BackendIPAddresses 134.170.185.46, 134.170.188.221, 134.170.185.50
102102
103103
# Creates a probe that will check health at http://contoso.com/path/path.htm
@@ -109,7 +109,7 @@ $poolSetting = New-AzApplicationGatewayBackendHttpSettings -Name poolsetting01 -
109109
# Creates a frontend port for the application gateway to listen on port 80 that will be used by the listener.
110110
$fp = New-AzApplicationGatewayFrontendPort -Name frontendport01 -Port 80
111111
112-
# Creates a frontend IP configuration. This associates the $publicip variable defined previously with the front-end IP that will be used by the listener.
112+
# Creates a frontend IP configuration. This associates the $publicip variable defined previously with the frontend IP that will be used by the listener.
113113
$fipconfig = New-AzApplicationGatewayFrontendIPConfig -Name fipconfig01 -PublicIPAddress $publicip
114114
115115
# Creates the listener. The listener is a combination of protocol and the frontend IP configuration $fipconfig and frontend port $fp created in previous steps.

0 commit comments

Comments
 (0)