I wanted to make a very simple web application with some interactivity and was seduced by the new possibilities of blazor server.
The basic setup was a simple webserver that runs on windows server that would expose the apllication, run it (with IIS) and also host the database.
When trying to deploy the application I was confronted with the the following guidelines (https://learn.microsoft.com/en-us/aspnet/core/blazor/host-and-deploy/server?view=aspnetcore-8.0), the need to set up a server farm to enable arr.
Let’s say I’m able to create a web server that steers two application servers in a farm setting, how do I configure these application servers specifically for this blazor server application, where do I put my code, my database, and so on … .
I can not really find clear guidelines for this for this new type of application. I’m looking for a clear protocol regarding what should be done fitting the application in/on those servers and how they need to be configured.