AI OnAI Off
This is the startup class:
using Microsoft.Owin;
using MyApp.Web.Plumbing;
using Owin;
[assembly: OwinStartup(typeof(OwinStartup))]
namespace MyApp.Web.Plumbing
{
public class OwinStartup
{
public void Configuration(IAppBuilder app)
{
app.MapSignalR();
}
}
}
I'm using IIS 7.5.
Hello!
I'm trying to set up EPiServer Live Monitor.
This is what I have done:
Now, when I click on the "Live Monitor" button, I get a 302 when "/signalr/hubs?" is requested, which is a redirect to our 404 page.
See this image:
Can anyone help?