Improve cross-links in Blazor server-side host doc (#12732)
parent
3fb6cc9101
commit
fff4d43d76
|
@ -1,11 +1,11 @@
|
|||
---
|
||||
title: Host and deploy Blazor server-side
|
||||
title: Host and deploy ASP.NET Core Blazor server-side
|
||||
author: guardrex
|
||||
description: Learn how to host and deploy a Blazor server-side app using ASP.NET Core.
|
||||
monikerRange: '>= aspnetcore-3.0'
|
||||
ms.author: riande
|
||||
ms.custom: mvc
|
||||
ms.date: 04/26/2019
|
||||
ms.date: 06/11/2019
|
||||
uid: host-and-deploy/blazor/server-side
|
||||
---
|
||||
# Host and deploy Blazor server-side
|
||||
|
@ -22,19 +22,19 @@ With the [server-side hosting model](xref:blazor/hosting-models#server-side), Bl
|
|||
|
||||
A web server capable of hosting an ASP.NET Core app is required. Visual Studio includes the **Blazor (server-side)** project template (`blazorserverside` template when using the [dotnet new](/dotnet/core/tools/dotnet-new) command).
|
||||
|
||||
<!--
|
||||
## Connection scale out
|
||||
|
||||
**INSERT: Concerns are the same as publishing an ASP.NET Core SignalR app**
|
||||
Blazor server-side apps require one active SignalR connection for each user. A production Blazor server-side deployment requires a solution for supporting as many concurrent connections as required by the app. The [Azure SignalR Service](/azure/azure-signalr/) handles the scaling of connections and is recommended as a scaling solution for Blazor server-side apps. For more information, see <xref:signalr/publish-to-azure-web-app>.
|
||||
|
||||
**INSERT: Content on the Azure SignalR Service**
|
||||
## SignalR configuration
|
||||
|
||||
**INSERT: Manually turn on WebSockets support**
|
||||
|
||||
-->
|
||||
SignalR is configured by ASP.NET Core for the most common Blazor server-side scenarios. For custom and advanced scenarios, consult the SignalR articles in the [Additional resources](#additional-resources) section.
|
||||
|
||||
## Additional resources
|
||||
|
||||
* <xref:signalr/introduction>
|
||||
* [Azure SignalR Service Documentation](/azure/azure-signalr/)
|
||||
* [Quickstart: Create a chat room by using SignalR Service](/azure/azure-signalr/signalr-quickstart-dotnet-core)
|
||||
* <xref:host-and-deploy/index>
|
||||
* <xref:tutorials/publish-to-azure-webapp-using-vs>
|
||||
* [Deploy ASP.NET Core preview release to Azure App Service](xref:host-and-deploy/azure-apps/index#deploy-aspnet-core-preview-release-to-azure-app-service)
|
||||
|
|
Loading…
Reference in New Issue