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
# Azure Resource Manager templates for App Service
14
15
15
16
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
27
28
|**Configuring an app**|**Description**|
28
29
|[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. |
29
30
|[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. |
31
32
|[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. |
32
33
|**Protecting an app**|**Description**|
33
34
|[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. |
*[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.
38
38
39
39
## Clone the sample app and prepare the repo
40
40
@@ -47,9 +47,9 @@ cd Passwordless-Connections-for-Java-Apps/Tomcat/
47
47
48
48
## Create an Azure Database for PostgreSQL
49
49
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.
51
51
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.
53
53
54
54
```azurecli-interactive
55
55
az login
@@ -99,7 +99,7 @@ Follow these steps to create an Azure Database for Postgres in your subscription
99
99
100
100
Follow these steps to build a WAR file and deploy to Azure App Service on Tomcat using a WAR packaging.
101
101
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.
103
103
104
104
```bash
105
105
mvn clean package -f pom.xml
@@ -182,7 +182,7 @@ az webapp config appsettings set \
182
182
183
183
## Test the sample web app
184
184
185
-
Run the following command to test the application.
185
+
Test the application by running the following command.
0 commit comments