本地可以正常打开hangfire页面,发布后报401

解决办法
增加CustomAuthorizeFilter
本地可以正常打开hangfire页面,发布后报401
public class CustomAuthorizeFilter : IDashboardAuthorizationFilter
    {
        public bool Authorize([NotNull] DashboardContext context)
        {
            return true;
        }
        public CustomAuthorizeFilter()
        {            
        }
    }
新增类

Configure增加配置,代码也可以其他地方,用下面代码替换原先 app.UseHangfireDashboard() 即可。

  app.UseHangfireDashboard("/hangfire", new DashboardOptions
            {
                Authorization = new[] { new CustomAuthorizeFilter() }
            }); 

 

本地可以正常打开hangfire页面,发布后报401

上一篇:C# 6.0:在catch和finally中使用await


下一篇:使用ROOT用户运行Jenkins