Trying to run self-hosted SignalR server application on an Azure virtual server
const string ServerURI = "http://<myip>:8080"; SignalR = WebApp.Start(ServerURI); The server is not created.
If you create a local server, then everything is fine
const string ServerURI = "http://localhost:8080"; Inbound rule for port created.
On a separate VPS, everything works fine, but on Azure in any way ...