Publish an ASP.NET Core SignalR app to Azure App Service

By Brady Gaster

Azure App Service is a Microsoft cloud computing platform service for hosting web apps, including ASP.NET Core.

Note

This article refers to publishing an ASP.NET Core SignalR app from Visual Studio. For more information, see SignalR service for Azure.

Publish the app

This article covers publishing using the tools in Visual Studio. Visual Studio Code users can use Azure CLI commands to publish apps to Azure. For more information, see Publish an ASP.NET Core app to Azure with command line tools.

  1. Right-click on the project in Solution Explorer and select Publish.

  2. Confirm that App Service and Create new are selected in the Pick a publish target dialog.

  3. Select Create Profile from the Publish button drop down.

    Enter the information described in the following table in the Create App Service dialog and select Create.

    Item Description
    Name Unique name of the app.
    Subscription Azure subscription that the app uses.
    Resource Group Group of related resources to which the app belongs.
    Hosting Plan Pricing plan for the web app.
  4. Select Azure SignalR Service in the Service Dependencies section. Select the + button:

    Dependencies area showing the selection of Azure SignalR Service in the Add drop-down list

  5. In the Azure SignalR Service dialog, select Create a new Azure SignalR Service instance.

  6. Provide a Name, Resource Group, and Location. Return to the Azure SignalR Service dialog and select Add.

Visual Studio completes the following tasks:

  • Creates a Publish Profile containing publish settings.
  • Creates an Azure Web App with the provided details.
  • Publishes the app.
  • Launches a browser, which loads the web app.

The format of the app's URL is {APP SERVICE NAME}.azurewebsites.net. For example, an app named SignalRChatApp has a URL of https://signalrchatapp.azurewebsites.net.

If an HTTP 502.2 - Bad Gateway error occurs when deploying an app that targets a preview .NET Core release, see Deploy ASP.NET Core preview release to Azure App Service to resolve it.

Configure the app in Azure App Service

Note

This section only applies to apps not using the Azure SignalR Service.

If the app uses the Azure SignalR Service, the App Service doesn't require the configuration of Application Request Routing (ARR) Affinity and Web Sockets described in this section. Clients connect their Web Sockets to the Azure SignalR Service, not directly to the app.

For apps hosted without the Azure SignalR Service, enable:

  • ARR Affinity to route requests from a user back to the same App Service instance. The default setting is On.
  • Web Sockets to allow the Web Sockets transport to function. The default setting is Off.
  1. In the Azure portal, navigate to the web app in App Services.
  2. Open Configuration > General settings.
  3. Set Web sockets to On.
  4. Verify that ARR affinity is set to On.

App Service Plan limits

Web Sockets and other transports are limited based on the App Service Plan selected. For more information, see the Azure Cloud Services limits and App Service limits sections of the Azure subscription and service limits, quotas, and constraints article.

Additional resources