Skip to content

Commit 5dd407b

Browse files
authored
Merge pull request #185849 from btardif/node
Node update
2 parents db95b76 + 12412d6 commit 5dd407b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

articles/app-service/overview-patch-os-runtime.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: OS and runtime patching cadence
33
description: Learn how Azure App Service updates the OS and runtimes, what runtimes and patch level your apps has, and how you can get update announcements.
44
ms.topic: article
5-
ms.date: 02/02/2018
5+
ms.date: 01/21/2021
66
ms.custom: seodec18, devx-track-azurecli
77

88
---
@@ -52,10 +52,13 @@ When a new major or minor version is added, it is installed side by side with th
5252
```azurecli-interactive
5353
az webapp config set --net-framework-version v4.7 --resource-group <groupname> --name <appname>
5454
az webapp config set --php-version 7.0 --resource-group <groupname> --name <appname>
55-
az webapp config appsettings set --settings WEBSITE_NODE_DEFAULT_VERSION=8.9.3 --resource-group <groupname> --name <appname>
55+
az webapp config appsettings set --settings WEBSITE_NODE_DEFAULT_VERSION=~14 --resource-group <groupname> --name <appname>
5656
az webapp config set --python-version 3.8 --resource-group <groupname> --name <appname>
5757
az webapp config set --java-version 1.8 --java-container Tomcat --java-container-version 9.0 --resource-group <groupname> --name <appname>
5858
```
59+
> [!NOTE]
60+
> This example uses the recommended "tilde syntax" to target the latest available version of Node.js 16 runtime on Windows App Service.
61+
>
5962
6063
## How can I query OS and runtime update status on my instances?
6164

0 commit comments

Comments
 (0)