Skip to content

Commit 3658df0

Browse files
authored
Merge pull request #50369 from cephalin/issue11053
add iisnode note
2 parents 584d20b + 0176673 commit 3658df0

4 files changed

+22
-10
lines changed

articles/app-service/app-service-web-get-started-dotnet-framework.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@ ms.workload: web
1313
ms.tgt_pltfrm: na
1414
ms.devlang: na
1515
ms.topic: quickstart
16-
ms.date: 06/11/2018
16+
ms.date: 08/29/2018
1717
ms.author: cephalin
1818
ms.custom: mvc, devcenter
1919
---
2020
# Create an ASP.NET Framework web app in Azure
2121

2222
[Azure Web Apps](app-service-web-overview.md) provides a highly scalable, self-patching web hosting service. This quickstart shows how to deploy your first ASP.NET web app to Azure Web Apps. When you're finished, you'll have a resource group that consists of an App Service plan and an Azure web app with a deployed web application.
2323

24-
Watch the video to see this quickstart in action and then follow the steps yourself to publish your first .NET app on Azure.
25-
26-
> [!VIDEO https://channel9.msdn.com/Shows/Azure-for-NET-Developers/Create-a-NET-app-in-Azure-Quickstart/player]
24+
![](./media/app-service-web-get-started-dotnet-framework/published-azure-web-app.png)
2725

2826
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
2927

@@ -156,6 +154,12 @@ You see your web app's Overview page. Here, you can perform basic management tas
156154

157155
The left menu provides different pages for configuring your app.
158156

157+
## Video
158+
159+
Watch the video to see this quickstart in action and then follow the steps yourself to publish your first .NET app on Azure.
160+
161+
> [!VIDEO https://channel9.msdn.com/Shows/Azure-for-NET-Developers/Create-a-NET-app-in-Azure-Quickstart/player]
162+
159163
[!INCLUDE [Clean-up section](../../includes/clean-up-section-portal.md)]
160164

161165
## Next steps

articles/app-service/app-service-web-get-started-dotnet.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.workload: web
1313
ms.tgt_pltfrm: na
1414
ms.devlang: na
1515
ms.topic: quickstart
16-
ms.date: 06/11/2018
16+
ms.date: 08/29/2018
1717
ms.author: cephalin
1818
ms.custom: mvc, devcenter, vs-azure
1919
---
@@ -25,9 +25,7 @@ ms.custom: mvc, devcenter, vs-azure
2525
2626
[Azure Web Apps](app-service-web-overview.md) provides a highly scalable, self-patching web hosting service. This quickstart shows how to deploy your first ASP.NET Core web app to Azure Web Apps. When you're finished, you'll have a resource group that consists of an App Service plan and an Azure web app with a deployed web application.
2727

28-
> [!NOTE]
29-
> If you're looking for how to build and deploy an ASP.NET Framework Web App, that article is available [here](app-service-web-get-started-dotnet-framework.md).
30-
>
28+
![](./media/app-service-web-get-started-dotnet/web-app-running-live.png)
3129

3230
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
3331

articles/app-service/app-service-web-get-started-nodejs.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ ms.custom: mvc, devcenter
2929

3030
You can follow the steps here using a Mac, Windows, or Linux machine. Once the prerequisites are installed, it takes about five minutes to complete the steps.
3131

32-
> [!VIDEO https://channel9.msdn.com/Shows/Azure-for-Node-Developers/Create-a-Nodejs-app-in-Azure-Quickstart/player]
33-
3432
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
3533

3634
## Prerequisites
@@ -61,6 +59,9 @@ You see the **Hello World** message from the sample app displayed in the page.
6159

6260
In your terminal window, press **Ctrl+C** to exit the web server.
6361

62+
> [!NOTE]
63+
> In Azure App Service, the app is run in IIS using [iisnode](https://github.com/tjanczuk/iisnode). To enable the app to run with iisnode, the root app directory contains a web.config file. The file is readable by IIS, and the iisnode-related settings are documented in [the iisnode GitHub repository](https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config).
64+
6465
[!INCLUDE [Create ZIP file](../../includes/app-service-web-create-zip.md)]
6566

6667
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
@@ -162,6 +163,12 @@ You see your web app's Overview page. Here, you can perform basic management tas
162163

163164
The left menu provides different pages for configuring your app.
164165

166+
## Video
167+
168+
Watch the video to see this quickstart in action and then follow the steps yourself to publish your first Node.js app on Azure.
169+
170+
> [!VIDEO https://channel9.msdn.com/Shows/Azure-for-Node-Developers/Create-a-Nodejs-app-in-Azure-Quickstart/player]
171+
165172
[!INCLUDE [cli-samples-clean-up](../../includes/cli-samples-clean-up.md)]
166173

167174
## Next steps

articles/app-service/app-service-web-tutorial-nodejs-mongodb-app.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@ Select **Admin > Manage Articles** to add some articles.
113113

114114
To stop Node.js at any time, press `Ctrl+C` in the terminal.
115115

116+
> [!NOTE]
117+
> The [Node.js quickstart](app-service-web-get-started-nodejs.md) mentions the need for a web.config in the root app directory. However, in this tutorial, this web.config file will be automatically generated by App Service when you deploy your files using [local Git deployment](app-service-deploy-local-git.md) instead of ZIP file deployment.
118+
116119
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
117120

118121
## Create production MongoDB

0 commit comments

Comments
 (0)