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
Copy file name to clipboardExpand all lines: articles/app-service/configure-language-java-deploy-run.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,6 +178,22 @@ To deploy .ear files, [use FTP](deploy-ftp.md). Your .ear application is deploye
178
178
179
179
Don't deploy your .war or .jar using FTP. The FTP tool is designed to upload startup scripts, dependencies, or other runtime files. It's not the optimal choice for deploying web apps.
180
180
181
+
## Rewrite or redirect URL
182
+
183
+
To rewrite or redirect URL, use one of the available URL rewriters, such as [UrlRewriteFilter](http://tuckey.org/urlrewrite/).
184
+
185
+
::: zone pivot="java-tomcat"
186
+
187
+
Tomcat also provides a [rewrite valve](https://tomcat.apache.org/tomcat-10.1-doc/rewrite.html).
188
+
189
+
::: zone-end
190
+
191
+
::: zone pivot="java-jboss"
192
+
193
+
JBoss also provides a [rewrite valve](https://docs.jboss.org/jbossweb/7.0.x/rewrite.html).
194
+
195
+
::: zone-end
196
+
181
197
## Logging and debugging apps
182
198
183
199
Performance reports, traffic visualizations, and health checkups are available for each app through the Azure portal. For more information, see [Azure App Service diagnostics overview](overview-diagnostics.md).
Copy file name to clipboardExpand all lines: articles/application-gateway/configure-application-gateway-with-private-frontend-ip.md
+12-8Lines changed: 12 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,26 +1,30 @@
1
1
---
2
2
title: Configure an internal load balancer (ILB) endpoint
3
3
titleSuffix: Azure Application Gateway
4
-
description: This article provides information on how to configure Application Gateway Standard v2 with a private frontend IP address
4
+
description: This article provides information on how to configure Application Gateway Standard v1 with a private frontend IP address
5
5
services: application-gateway
6
6
author: greg-lindsay
7
7
ms.service: azure-application-gateway
8
8
ms.topic: how-to
9
-
ms.date: 02/07/2024
9
+
ms.date: 08/09/2024
10
10
ms.author: greglin
11
11
---
12
12
13
13
# Configure an application gateway with an internal load balancer (ILB) endpoint
14
14
15
-
Azure Application Gateway Standard v2 can be configured with an Internet-facing VIP or with an internal endpoint that isn't exposed to the Internet. An internal endpoint uses a private IP address for the frontend, which is also known as an *internal load balancer (ILB) endpoint*.
15
+
Azure Application Gateway Standard v1 can be configured with an Internet-facing VIP or with an internal endpoint that isn't exposed to the Internet. An internal endpoint uses a private IP address for the frontend, which is also known as an *internal load balancer (ILB) endpoint*.
16
+
17
+
> [!NOTE]
18
+
> Application Gateway v1 is being retired. See the [v1 retiredment announcement](/azure/application-gateway/v1-retirement).<br>
19
+
> To configure a v2 application gateway with a private frontend IP address, see [Private Application Gateway deployment](/azure/application-gateway/application-gateway-private-deployment).
16
20
17
21
Configuring the gateway using a frontend private IP address is useful for internal line-of-business applications that aren't exposed to the Internet. It's also useful for services and tiers within a multi-tier application that are in a security boundary that isn't exposed to the Internet but:
18
22
19
23
- still require round-robin load distribution
20
24
- session stickiness
21
25
- or Transport Layer Security (TLS) termination (previously known as Secure Sockets Layer (SSL)).
22
26
23
-
This article guides you through the steps to configure a Standard v2 Application Gateway with an ILB using the Azure portal.
27
+
This article guides you through the steps to configure a Standard v1 Application Gateway with an ILB using the Azure portal.
@@ -38,7 +42,7 @@ In this example, you create a new virtual network. You can create a virtual netw
38
42
2. Select **Networking** and then select **Application Gateway** in the Featured list.
39
43
3. Enter *myAppGateway* for the name of the application gateway and *myResourceGroupAG* for the new resource group.
40
44
4. For **Region**, select **Central US**.
41
-
5. For **Tier**, select **Standard V2**.
45
+
5. For **Tier**, select **Standard**.
42
46
6. Under **Configure virtual network** select **Create new**, and then enter these values for the virtual network:
43
47
-*myVNet* - for the name of the virtual network.
44
48
-*10.0.0.0/16* - for the virtual network address space.
@@ -59,7 +63,7 @@ In this example, you create a new virtual network. You can create a virtual netw
59
63
9. Select **Next:Backends**.
60
64
10. Select **Add a backend pool**.
61
65
11. For **Name**, type *appGatewayBackendPool*.
62
-
12. For **Add backend pool without targets**, select **Yes**. You'll add the targets later.
66
+
12. For **Add backend pool without targets**, select **Yes**. Targets are added later.
63
67
13. Select **Add**.
64
68
14. Select **Next:Configuration**.
65
69
15. Under **Routing rules**, select **Add a routing rule**.
@@ -80,9 +84,9 @@ In this example, you create a new virtual network. You can create a virtual netw
80
84
81
85
## Add backend pool
82
86
83
-
The backend pool is used to route requests to the backend servers that serve the request. The backend can be composed of NICs, virtual machine scale sets, public IP addresses, internal IP addresses, fully qualified domain names (FQDN), and multi-tenant backends like Azure App Service. In this example, you use virtual machines as the target backend. You can either use existing virtual machines or create new ones. In this example, you create two virtual machines that Azure uses as backend servers for the application gateway.
87
+
The backend pool is used to route requests to the backend servers that serve the request. The backend can be composed of NICs, virtual machine scale sets, public IP addresses, internal IP addresses, fully qualified domain names (FQDN), and multitenant backends like Azure App Service. In this example, you use virtual machines as the target backend. You can either use existing virtual machines or create new ones. In this example, you create two virtual machines that Azure uses as backend servers for the application gateway.
84
88
85
-
To do this, you:
89
+
To do this:
86
90
87
91
1. Create two new virtual machines, *myVM* and *myVM2*, used as backend servers.
88
92
2. Install IIS on the virtual machines to verify that the application gateway was created successfully.
Copy file name to clipboardExpand all lines: articles/azure-maps/glossary.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,8 @@ The following list describes common words used with the Azure Maps services.
151
151
152
152
## G
153
153
154
+
<aname="geobias"></a> **Geobias**: A geospatial bias to improve the ranking of results. In some methods, this can be affected by setting the longitude and latitude parameters where available. In other cases it is purely internal.
155
+
154
156
<aname="geocode"></a> **Geocode**: An address or location that has been converted into a coordinate that can be used to display that location on a map.
155
157
156
158
<aname="geocoding"></a> **Geocoding**: Or _forward geocoding_, is the process of converting address of location data into coordinates.
0 commit comments