Skip to content

Commit 9f7a372

Browse files
Merge pull request #274956 from vicancy/patch-16
Update signalr-howto-work-with-app-gateway.md
2 parents e7b9f23 + bc89ed6 commit 9f7a372

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

articles/azure-signalr/signalr-howto-work-with-app-gateway.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to use SignalR Service with Azure Application Gateway
33
description: This article provides information about using Azure SignalR Service with Azure Application Gateway.
44
author: vicancy
55
ms.author: lianwei
6-
ms.date: 08/16/2022
6+
ms.date: 05/10/2024
77
ms.service: signalr
88
ms.topic: how-to
99
---
@@ -241,24 +241,26 @@ Let's deploy the Chat application into the same VNet with **_ASRS1_** so that th
241241

242242
### Deploy the chat application to Azure
243243

244-
- On the [Azure portal](https://portal.azure.com/), search for **App services** and **Create**.
244+
- On the [Azure portal](https://portal.azure.com/), search for **App services** and **Create** **Web App**.
245245

246-
- On the **Basics** tab, use these values for the following application gateway settings:
246+
- On the **Basics** tab, use these values for the following web app settings:
247247
- **Subscription** and **Resource group** and **Region**: the same as what you choose for SignalR Service
248248
- **Name**: **_WA1_**
249249
* **Publish**: **Code**
250250
* **Runtime stack**: **.NET 6 (LTS)**
251251
* **Operating System**: **Linux**
252252
* **Region**: Make sure it's the same as what you choose for SignalR Service
253-
* Select **Next: Docker**
253+
* Select **Next: Deployment**, keep all as default, and select **Next:Networking**
254254
- On the **Networking** tab
255255
- **Enable network injection**: select **On**
256256
- **Virtual Network**: select **_VN1_** we previously created
257257
- **Enable VNet integration**: **On**
258258
- **Outbound subnet**: create a new subnet
259259
- Select **Review + create**
260260

261-
Now let's deploy our chat application to Azure. Below we use Azure CLI to deploy the web app, you can also choose other deployment environments following [publish your web app section](/azure/app-service/quickstart-dotnetcore#publish-your-web-app).
261+
Now let's deploy our chat application to Azure. Below
262+
263+
We use Azure CLI to deploy our chat application to Azure. Check [Quickstart: Deploy an ASP.NET web app](/azure/app-service/quickstart-dotnetcore) for other deployment environments deploying to Azure.
262264

263265
Under folder samples/Chatroom, run the below commands:
264266

@@ -271,7 +273,7 @@ zip -r app.zip .
271273
# use az CLI to deploy app.zip to our webapp
272274
az login
273275
az account set -s <your-subscription-name-used-to-create-WA1>
274-
az webapp deployment source config-zip -n WA1 -g <resource-group-of-WA1> --src app.zip
276+
az webapp deploy -g <resource-group-of-WA1> -n WA1 --src-path app.zip
275277
```
276278

277279
Now the web app is deployed, let's go to the portal for **_WA1_** and make the following updates:

0 commit comments

Comments
 (0)