Skip to content

Commit e9c5810

Browse files
Merge pull request #314566 from MicrosoftDocs/main
Auto Publish – main to live - 2026-04-10 11:00 UTC
2 parents bb7220f + 0540f4a commit e9c5810

7 files changed

Lines changed: 292 additions & 266 deletions

articles/app-service/routine-maintenance-downtime.md

Lines changed: 37 additions & 30 deletions
Large diffs are not rendered by default.

articles/app-service/samples-resource-manager-templates.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ author: tfitzmac
55
tags: azure-service-management
66

77
ms.topic: sample
8-
ms.date: 08/26/2020
8+
ms.date: 03/17/2026
99
ms.author: tomfitz
1010
ms.custom: mvc, fasttrack-edit, devx-track-arm-template
1111
ms.service: azure-app-service
1212
---
13+
1314
# Azure Resource Manager templates for App Service
1415

1516
The following table includes links to Azure Resource Manager templates for Azure App Service. For recommendations about avoiding common errors when you're creating app templates, see [Guidance on deploying apps with Azure Resource Manager templates](deploy-resource-manager-template.md).
@@ -27,7 +28,7 @@ To learn about the JSON syntax and properties for App Services resources, see [M
2728
|**Configuring an app**| **Description** |
2829
| [App certificate from Key Vault](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.web/web-app-certificate-from-key-vault)| Deploys an App Service app certificate from an Azure Key Vault secret and uses it for TLS/SSL binding. |
2930
| [App with a custom domain and SSL](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.web/web-app-custom-domain-and-ssl)| Deploys an App Service app with a custom host name, and gets an app certificate from Key Vault for TLS/SSL binding. |
30-
| [App with Java 8 and Tomcat 8](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.web/web-app-java-tomcat)| Deploys an App Service app with Java 8 and Tomcat 8 enabled. You can then run Java applications in Azure. |
31+
| [App with Java 13 and Tomcat 9](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.web/web-app-java-tomcat)| Deploys an App Service app with Java 13 and Tomcat 9 enabled. You can then run Java applications in Azure. |
3132
| [App with regional VNet integration](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.web/app-service-regional-vnet-integration)| Deploys an App Service app with regional VNet integration enabled. |
3233
|**Protecting an app**| **Description** |
3334
| [App integrated with Azure Application Gateway](https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.web/web-app-with-app-gateway-v2)| Deploys an App Service app and an Application Gateway, and isolates the traffic using service endpoint and access restrictions. |

articles/app-service/tutorial-java-tomcat-connect-managed-identity-postgresql-database.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ ms.custom:
3131

3232
## Prerequisites
3333

34-
* [Git](https://git-scm.com/)
35-
* [Java JDK](/azure/developer/java/fundamentals/java-support-on-azure)
36-
* [Maven](https://maven.apache.org)
37-
* [Azure CLI](/cli/azure/install-azure-cli) version 2.45.0 or higher.
34+
- [Git](https://git-scm.com/)
35+
- [Java Development Kit (JDK)](/azure/developer/java/fundamentals/java-support-on-azure)
36+
- [Maven](https://maven.apache.org)
37+
- [Azure CLI](/cli/azure/install-azure-cli) version 2.45.0 or higher.
3838

3939
## Clone the sample app and prepare the repo
4040

@@ -47,9 +47,9 @@ cd Passwordless-Connections-for-Java-Apps/Tomcat/
4747

4848
## Create an Azure Database for PostgreSQL
4949

50-
Follow these steps to create an Azure Database for Postgres in your subscription. The Tomcat app connects to this database and store its data when running, persisting the application state no matter where you run the application.
50+
Follow these steps to create an Azure Database for Postgres in your subscription. The Tomcat app connects to this database and stores its data when running, persisting the application state no matter where you run the application.
5151

52-
1. Sign into the Azure CLI, and optionally set your subscription if you have more than one connected to your login credentials.
52+
1. Sign into the Azure CLI, and optionally set your subscription if you have more than one connected to your sign-in credentials.
5353

5454
```azurecli-interactive
5555
az login
@@ -99,7 +99,7 @@ Follow these steps to create an Azure Database for Postgres in your subscription
9999

100100
Follow these steps to build a WAR file and deploy to Azure App Service on Tomcat using a WAR packaging.
101101

102-
1. The sample app contains a *pom.xml* file that can generate the WAR file. Run the following command to build the app.
102+
1. The sample app contains a *pom.xml* file that can generate the WAR file. To build the app, run the following command.
103103

104104
```bash
105105
mvn clean package -f pom.xml
@@ -182,7 +182,7 @@ az webapp config appsettings set \
182182

183183
## Test the sample web app
184184

185-
Run the following command to test the application.
185+
Test the application by running the following command.
186186

187187
```bash
188188
export WEBAPP_URL=$(az webapp show \

0 commit comments

Comments
 (0)