Change the dashboard url

Currently you access the dashboard via yoursite.com/hangfire. Would it be possible to change that url to something else eg yoursite.com/hangfiredashboard or whatever I choose?

You can use the IBootstrapperConfiguration.UseDashboardPath(path) method.

public void Configure(IAppBuilder app)
{
    app.UseHangfire(config =>
    {
        config.UseSqlServerStorage("<connection string or its name>");
        config.UseDashboardPath("/hangfiredashboard");
    });
}

Excellent, thank you!