Skip to content

Commit a734430

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into us429364-seo-top25-vnet
2 parents 9e2818a + 2ffc3f2 commit a734430

19 files changed

+110
-70
lines changed

articles/application-gateway/configuration-overview.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,35 +20,35 @@ This image illustrates an application that has three listeners. The first two ar
2020

2121
## Infrastructure
2222

23-
The Application Gateway infrastructure includes the virtual network, subnets, network security groups, and user defined routes.
23+
The Application Gateway infrastructure includes the virtual network, subnets, network security groups, and user-defined routes.
2424

2525
For more information, see [Application Gateway infrastructure configuration](configuration-infrastructure.md).
2626

2727

2828

2929
## Frontend IP address
3030

31-
You can configure the application gateway to have a public IP address, a private IP address, or both. A public IP is required when you host a back end that clients must access over the Internet via an Internet-facing virtual IP (VIP).
31+
You can configure the application gateway to have a public IP address, a private IP address, or both. A public IP is required when you host a backend that clients must access over the Internet via an Internet-facing virtual IP (VIP).
3232

3333
For more information, see [Application Gateway frontend IP address configuration](configuration-frontend-ip.md).
3434

3535
## Listeners
3636

37-
A listener is a logical entity that checks for incoming connection requests by using the port, protocol, host, and IP address. When you configure the listener, you must enter values for these that match the corresponding values in the incoming request on the gateway.
37+
A listener is a logical entity that checks for incoming connection requests by using the port, protocol, host, and IP address. When you configure the listener, you must enter values for these entities that match the corresponding values in the incoming request on the gateway.
3838

3939
For more information, see [Application Gateway listener configuration](configuration-listeners.md).
4040

4141
## Request routing rules
4242

43-
When you create an application gateway by using the Azure portal, you create a default rule (*rule1*). This rule binds the default listener (*appGatewayHttpListener*) with the default backend pool (*appGatewayBackendPool*) and the default backend HTTP settings (*appGatewayBackendHttpSettings*). After you create the gateway, you can edit the settings of the default rule or create new rules.
43+
When you create an application gateway by using the Azure portal, you create a default rule (*rule1*). This rule binds the default listener (*appGatewayHttpListener*) with the default backend pool (*appGatewayBackendPool*) and the default backend HTTP settings (*appGatewayBackendHttpSettings*). After you create the gateway, you can edit the settings of the default rule or create new rules.
4444

4545
For more information, see [Application Gateway request routing rules](configuration-request-routing-rules.md).
4646

47-
## HTTP settings
47+
## Backend settings
4848

49-
The application gateway routes traffic to the backend servers by using the configuration that you specify here. After you create an HTTP setting, you must associate it with one or more request-routing rules.
49+
The application gateway routes traffic to the backend servers by using the configuration that you specify here. After you create a backend setting, you must associate it with one or more request-routing rules.
5050

51-
For more information, see [Application Gateway HTTP settings configuration](configuration-http-settings.md).
51+
For more information, see [Application Gateway backend settings configuration](configuration-http-settings.md).
5252

5353
## Backend pool
5454

@@ -58,10 +58,10 @@ After you create a backend pool, you must associate it with one or more request-
5858

5959
## Health probes
6060

61-
An application gateway monitors the health of all resources in its back end by default. But we strongly recommend that you create a custom probe for each backend HTTP setting to get greater control over health monitoring. To learn how to configure a custom probe, see [Custom health probe settings](application-gateway-probe-overview.md#custom-health-probe-settings).
61+
An application gateway monitors the health of all resources in its backend by default. But we strongly recommend that you create a custom probe for each backend HTTP setting to get greater control over health monitoring. To learn how to configure a custom probe, see [Custom health probe settings](application-gateway-probe-overview.md#custom-health-probe-settings).
6262

6363
> [!NOTE]
64-
> After you create a custom health probe, you need to associate it to a backend HTTP setting. A custom probe won't monitor the health of the backend pool unless the corresponding HTTP setting is explicitly associated with a listener using a rule.
64+
> After you create a custom health probe, you need to associate it to a backend HTTP setting. A custom probe doesn't monitor the health of the backend pool unless the corresponding HTTP setting is explicitly associated with a listener using a rule.
6565
6666
## Next steps
6767

articles/application-gateway/redirect-overview.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,29 @@ ms.author: mbender
1212

1313
# Application Gateway redirect overview
1414

15-
You can use application gateway to redirect traffic. It has a generic redirection mechanism which allows for redirecting traffic received at one listener to another listener or to an external site. This simplifies application configuration, optimizes the resource usage, and supports new redirection scenarios including global and path-based redirection.
15+
You can use application gateway to redirect traffic. It has a generic redirection mechanism, which allows for redirecting traffic received at one listener to another listener or to an external site. This simplifies application configuration, optimizes the resource usage, and supports new redirection scenarios including global and path-based redirection.
1616

17-
A common redirection scenario for many web applications is to support automatic HTTP to HTTPS redirection to ensure all communication between application and its users occurs over an encrypted path. In the past, customers have used techniques such as creating a dedicated backend pool whose sole purpose is to redirect requests it receives on HTTP to HTTPS. With redirection support in Application Gateway, you can accomplish this simply by adding a new redirect configuration to a routing rule, and specifying another listener with HTTPS protocol as the target listener.
17+
A common redirection scenario for many web applications is to support automatic HTTP to HTTPS redirection to ensure all communication between an application and its users occurs over an encrypted path. In the past, customers have used techniques such as creating a dedicated backend pool whose sole purpose is to redirect requests it receives on HTTP to HTTPS. With redirection support in Application Gateway, you can accomplish this simply by adding a new redirect configuration to a routing rule, and specifying another listener with HTTPS protocol as the target listener. For more information on HTTP to HTTPS redirection, see [Create an Application Gateway with HTTP to HTTPS redirection using the Azure portal](redirect-http-to-https-portal.md).
1818

1919
## Redirection types
2020
A redirect type sets the response status code for the clients to understand the purpose of the redirect. The following types of redirection are supported:
2121

22-
- 301 (Moved permanently): Indicates that the target resource has been assigned a new permanent URI. Any future references to this resource will use one of the enclosed URIs. Use 301 status code for HTTP to HTTPS redirection.
23-
- 302 (Found): Indicates that the target resource is temporarily under a different URI. Since the redirection can change on occasion, the client should continue to use the effective request URI for future requests.
24-
- 303 (See Other): Indicates that the target resource is redirecting the user agent to a different resource, as indicated by a URI in the Location header field.
25-
- 307 (Temporary redirect): Indicates that the target resource is temporarily under a different URI. The user agent MUST NOT change the request method if it does an automatic redirection to that URI. Since the redirection can change over time, the client ought to continue using the original effective request URI for future requests.
22+
- **301 (Moved permanently)**: Indicates that the target resource has been assigned a new permanent URI. Any future references to this resource will use one of the enclosed URIs. Use 301 status code for HTTP to HTTPS redirection.
23+
- **302 (Found)**: Indicates that the target resource is temporarily under a different URI. Since the redirection can change on occasion, the client should continue to use the effective request URI for future requests.
24+
- **303 (See Other)**: Indicates that the target resource is redirecting the user agent to a different resource, as indicated by a URI in the Location header field.
25+
- **307 (Temporary redirect)**: Indicates that the target resource is temporarily under a different URI. The user agent MUST NOT change the request method if it does an automatic redirection to that URI. Since the redirection can change over time, the client ought to continue using the original effective request URI for future requests.
2626

2727
## Redirection capabilities
2828

29-
- **Listener redirection**
29+
- **Listener redirection**
3030

3131
Redirects from one listener to another listener. Listener redirection is commonly used to enable HTTP to HTTPS redirection.
3232

33-
When configuring redirects with a multi-site target listener, it is required that all the host names (with or without wildcard characters) are defined as part of the source listener are also part of the destination listener. This ensures that no traffic is dropped due to missing host names on the destination listener while configuring HTTP to HTTPS redirection.
33+
When configuring redirects with a multi-site target listener, it's required that all the host names (with or without wildcard characters) that are defined as part of the source listener are also part of the destination listener. This ensures that no traffic is dropped due to missing host names on the destination listener while configuring HTTP to HTTPS redirection.
3434

3535
- **Path-based redirection**
3636

37-
This type of redirection enables redirection only on a specific site area, for example, redirecting HTTP to HTTPS requests for a shopping cart area denoted by /cart/\*.
37+
This type of redirection enables redirection only on a specific site area, for example, redirecting HTTP to HTTPS requests for a shopping cart area denoted by `/cart/*`.
3838

3939
- **Redirect to external site**
4040

articles/application-gateway/ssl-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ You may not want unencrypted communication to the backend servers. You may have
6161

6262
End-to-end TLS allows you to encrypt and securely transmit sensitive data to the backend while you use Application Gateway's Layer-7 load-balancing features. These features include cookie-based session affinity, URL-based routing, support for routing based on sites, the ability to rewrite or inject X-Forwarded-* headers, and so on.
6363

64-
When configured with end-to-end TLS communication mode, Application Gateway terminates the TLS sessions at the gateway and decrypts user traffic. It then applies the configured rules to select an appropriate backend pool instance to route traffic to. Application Gateway then initiates a new TLS connection to the backend server and re-encrypts data using the backend server's public key certificate before transmitting the request to the backend. Any response from the web server goes through the same process back to the end user. End-to-end TLS is enabled by setting protocol setting in [Backend HTTP Setting](./configuration-overview.md#http-settings) to HTTPS, which is then applied to a backend pool.
64+
When configured with end-to-end TLS communication mode, Application Gateway terminates the TLS sessions at the gateway and decrypts user traffic. It then applies the configured rules to select an appropriate backend pool instance to route traffic to. Application Gateway then initiates a new TLS connection to the backend server and re-encrypts data using the backend server's public key certificate before transmitting the request to the backend. Any response from the web server goes through the same process back to the end user. End-to-end TLS is enabled by setting protocol setting in [Backend HTTP Setting](./configuration-overview.md#backend-settings) to HTTPS, which is then applied to a backend pool.
6565

6666
In Application Gateway v1 SKU gateways, [TLS policy](./application-gateway-ssl-policy-overview.md) applies the TLS version only to frontend traffic and the defined ciphers to both frontend and backend targets. In Application Gateway v2 SKU gateways, TLS policy only applies to frontend traffic, backend TLS connections will always be negotiated via TLS 1.0 to TLS 1.2 versions.
6767

articles/healthcare-apis/dicom/dicom-configure-azure-rbac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This article describes how to configure Azure RBAC for the DICOM se
44
author: varunbms
55
ms.service: azure-health-data-services
66
ms.topic: how-to
7-
ms.date: 10/09/2023
7+
ms.date: 06/15/2025
88
ms.author: buchvarun
99
---
1010

articles/healthcare-apis/dicom/dicom-data-lake.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: varunbms
55
ms.service: azure-health-data-services
66
ms.subservice: dicom-service
77
ms.topic: how-to
8-
ms.date: 03/11/2024
8+
ms.date: 06/15/2025
99
ms.author: buchvarun
1010
ms.custom: mode-api
1111
---

articles/healthcare-apis/dicom/dicom-digital-pathology.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: varunbms
66
ms.service: azure-health-data-services
77
ms.subservice: dicom-service
88
ms.topic: reference
9-
ms.date: 10/9/2023
9+
ms.date: 07/15/2025
1010
ms.author: buchvarun
1111
---
1212

@@ -94,4 +94,4 @@ Reach out to [email protected] if you want to work with our partner IS
9494

9595
[Use DICOMweb APIs with the DICOM service](dicomweb-standard-apis-with-dicom-services.md)
9696

97-
[!INCLUDE [DICOM trademark statement](../includes/healthcare-apis-dicom-trademark.md)]
97+
[!INCLUDE [DICOM trademark statement](../includes/healthcare-apis-dicom-trademark.md)]

articles/healthcare-apis/dicom/dicom-extended-query-tags-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: varunbms
55
ms.service: azure-health-data-services
66
ms.subservice: dicom-service
77
ms.topic: conceptual
8-
ms.date: 10/9/2023
8+
ms.date: 07/15/2025
99
ms.author: buchvarun
1010
---
1111

@@ -483,4 +483,4 @@ This conceptual article provided you with an overview of the Extended Query Tag
483483

484484
[Use DICOMweb APIs with the DICOM service](dicomweb-standard-apis-with-dicom-services.md)
485485

486-
[!INCLUDE [DICOM trademark statement](../includes/healthcare-apis-dicom-trademark.md)]
486+
[!INCLUDE [DICOM trademark statement](../includes/healthcare-apis-dicom-trademark.md)]

articles/healthcare-apis/dicom/dicom-proxy-url-support.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: Support for URL customization for the DICOM service in Azure Health Data
33
description: Learn how to customize the URL of the image location that is in response object.
44
author: varunbms
55
ms.service: azure-health-data-services
6-
ms.subservice: fhir
6+
ms.subservice: dicom-service
77
ms.topic: overview
8-
ms.date: 10/17/2024
8+
ms.date: 07/15/2025
99
ms.author: buchvarun
1010
---
1111

articles/healthcare-apis/dicom/dicom-register-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: varunbms
55
ms.service: azure-health-data-services
66
ms.subservice: dicom-service
77
ms.topic: tutorial
8-
ms.date: 09/02/2022
8+
ms.date: 07/15/2025
99
ms.author: buchvarun
1010
---
1111

articles/healthcare-apis/dicom/dicom-service-v2-api-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: varunbms
66
ms.service: azure-health-data-services
77
ms.subservice: dicom-service
88
ms.topic: reference
9-
ms.date: 10/13/2023
9+
ms.date: 07/15/2025
1010
ms.author: buchvarun
1111
---
1212

0 commit comments

Comments
 (0)