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
Copy file name to clipboardExpand all lines: articles/azure-signalr/signalr-howto-work-with-app-gateway.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: How to use SignalR Service with Azure Application Gateway
3
3
description: This article provides information about using Azure SignalR Service with Azure Application Gateway.
4
4
author: vicancy
5
5
ms.author: lianwei
6
-
ms.date: 08/16/2022
6
+
ms.date: 05/10/2024
7
7
ms.service: signalr
8
8
ms.topic: how-to
9
9
---
@@ -241,24 +241,26 @@ Let's deploy the Chat application into the same VNet with **_ASRS1_** so that th
241
241
242
242
### Deploy the chat application to Azure
243
243
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**.
245
245
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:
247
247
-**Subscription** and **Resource group** and **Region**: the same as what you choose for SignalR Service
248
248
-**Name**: **_WA1_**
249
249
***Publish**: **Code**
250
250
***Runtime stack**: **.NET 6 (LTS)**
251
251
***Operating System**: **Linux**
252
252
***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**
254
254
- On the **Networking** tab
255
255
-**Enable network injection**: select **On**
256
256
-**Virtual Network**: select **_VN1_** we previously created
257
257
-**Enable VNet integration**: **On**
258
258
-**Outbound subnet**: create a new subnet
259
259
- Select **Review + create**
260
260
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.
262
264
263
265
Under folder samples/Chatroom, run the below commands:
264
266
@@ -271,7 +273,7 @@ zip -r app.zip .
271
273
# use az CLI to deploy app.zip to our webapp
272
274
az login
273
275
az account set -s <your-subscription-name-used-to-create-WA1>
0 commit comments