我在我的 MVC Web 应用程序中运行 HangFire,但是每当我尝试导航到http://MyApp/hangfire时,它都会将我重定向到我的应用程序的登录页面,就好像我没有登录一样。
我没有明确配置任何授权要求...例如,我在 web.config 中有以下内容,但随后将其取出以尝试使其正常工作。
<location path="hangfire">
<system.web>
<authorization>
<allow roles="Administrator" />
<deny users="*" />
</authorization>
</system.web>
理论上,这就是我想要的,当我登录到我的主 Web 应用程序时,我将使用一个Administrator
角色登录,所以这个规则应该可以工作。
但是无论我是否在 web.config 中进行了配置,每当我尝试导航到http://MyApp/hangfire时,它都会将我重定向到我在 web.config 中配置的应用程序登录页面:
<authentication mode="Forms">
<forms loginUrl="~/Account/Login" timeout="960" />
</authentication>
它不会在我的本地机器上执行此操作,只是当我发布到我的主机时。当我登录时,HangFire 是否无法识别我的主应用程序提供的身份验证 cookie?我认为一般来说,hangfire 应用程序不需要身份验证,那么其他配置可能会认为它需要身份验证吗?
更新 1:
我根据hangfire docs添加了授权过滤器,但同样的事情发生了。这是我在 Startup.cs 中的代码:
using Hangfire;
using Hangfire.Logging;
using Hangfire.Dashboard;
using Hangfire.SqlServer;
using Microsoft.Owin;
using OTIS.Web.AppCode;
using OTISScheduler.AppServ;
using Owin;
using System.Web.Security;
[assembly: OwinStartup(typeof(OTIS.Web.App_Start.Startup))]
namespace OTIS.Web.App_Start
{
public class Startup
{
public void Configuration(IAppBuilder app) {
app.UseHangfire(config => {
config.UseSqlServerStorage("DefaultConnection");
config.UseServer();
//Dashboard authorization
config.UseAuthorizationFilters(new AuthorizationFilter
{
Users = "USERA", // allow only specified users (comma delimited list)
Roles = "Account Administrator, Administrator" // allow only specified roles(comma delimited list)
});
});
LogProvider.SetCurrentLogProvider(new StubLogProviderForHangfire());
GlobalJobFilters.Filters.Add(new AutomaticRetryAttribute { Attempts = 0 });
var scheduleTasksInitializer = new ScheduleTasksInitializer();
scheduleTasksInitializer.ScheduleTasks();
}
}
}
更新 2:
根据显示基本身份验证的更详细说明,我也尝试了这个......仍然没有运气......将我重定向到我的应用程序的登录页面。
config.UseAuthorizationFilters(
new BasicAuthAuthorizationFilter(
new BasicAuthAuthorizationFilterOptions
{
// Require secure connection for dashboard
RequireSsl = false,
SslRedirect = false,
// Case sensitive login checking
LoginCaseSensitive = true,
// Users
Users = new[]
{
new BasicAuthAuthorizationUser
{
Login = "MyLogin",
// Password as plain text
PasswordClear = "MyPwd"
}
}
}));