Have changed computer to run my project and website on, and now it doesn't work at all.
When I go to http://localhost:8080/signalr/hubs I get "ERR_CONNECTION_REFUSED"
In my Self-Hosted aplikation:
string url = "http://*:8080";
using (WebApp.Start(url))
{
writeStatus("Server running on " + url);
}
And on my website:
<script src="http://localhost:8080/signalr/hubs"></script>
What have i missed?