Split dashboard and jobs

Is there a way in which I can split the dashboard that hangfire uses to say a website called: “my-hangfire-site.com”, while having each other website have the jobs seperated.

For example:

  • website1 // For dashboard
  • website2 // have 5 jobs about emails
  • website3 // have 3 jobs about search results
  • website4 // have X jobs

Each website having split codebases, but using the same hangfire database. And any website that have jobs, should not be able to display a dashboard on their own.
I guess, this is a bit like a master-slave relationship between different instances of hangfire.
All websites can potentially be running on different physical/virtual servers.