I've deployed a SignalR-based app onto my on-premises server, and it is crashing when there are more than ten concurrent users.
The long-running requests for the worker process associated with my app pool all have URLs of the form /signalr/reconnect?transport=serverSentEvents&connectionToken=...
.
As soon as more than ten users connect, the limit of ten concurrent requests is breached and the application hangs.
Do I need to change any IIS settings to allow SignalR to scale in this instance? If I'm deploying to Azure, how would I configure the settings to take account of this?