1.6 KiB
1.6 KiB
title | author | description | monikerRange | ms.author | ms.custom | ms.date | uid |
---|---|---|---|---|---|---|---|
Host and deploy Blazor server-side | guardrex | Learn how to host and deploy a Blazor server-side app using ASP.NET Core. | >= aspnetcore-3.0 | riande | mvc | 04/26/2019 | host-and-deploy/blazor/server-side |
Host and deploy Blazor server-side
By Luke Latham, Rainer Stropek, and Daniel Roth
Host configuration values
Server-side apps that use the server-side hosting model can accept Generic Host configuration values.
Deployment
With the server-side hosting model, Blazor is executed on the server from within an ASP.NET Core app. UI updates, event handling, and JavaScript calls are handled over a SignalR connection.
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 command).