All Projects → yuzd → Hangfire.Dashboard.BasicAuthorization

yuzd / Hangfire.Dashboard.BasicAuthorization

Licence: MIT License
Hangfire.Dashboard.BasicAuthorization for .netcore

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Hangfire.Dashboard.BasicAuthorization

hangfire-dashboard-customize
Customize your Hangfire Dashboard (e.g. Change the Title of the Dashboard)
Stars: ✭ 19 (-44.12%)
Mutual labels:  hangfire
Hangfire.StructureMap
Hangfire background job activator based on the StructureMap IoC container
Stars: ✭ 16 (-52.94%)
Mutual labels:  hangfire
Hangfire.Heartbeat
Server monitoring plugin for Hangfire.
Stars: ✭ 71 (+108.82%)
Mutual labels:  hangfire
aspnet-core-3-basic-authentication-api
ASP.NET Core 3.1 - Basic HTTP Authentication API
Stars: ✭ 70 (+105.88%)
Mutual labels:  basicauthentication
Hangfire.AzureDocumentDB
Azure DocumentDB storage provider for Hangfire
Stars: ✭ 14 (-58.82%)
Mutual labels:  hangfire
Hangfire.Atoms
Execute multiple jobs as a one atomic job.
Stars: ✭ 20 (-41.18%)
Mutual labels:  hangfire
Hangfire.MissionControl
A plugin for Hangfire that enables you to launch jobs manually.
Stars: ✭ 51 (+50%)
Mutual labels:  hangfire
Hangfire.MemoryStorage
A memory storage for Hangfire.
Stars: ✭ 113 (+232.35%)
Mutual labels:  hangfire
SdvCodeWebsite
Simeon Valev - Personal Blog - Developed on ASP.NET Core MVC - Server-Side Blazor - See README.md file for more information
Stars: ✭ 38 (+11.76%)
Mutual labels:  hangfire
Hangfire
An easy way to perform background job processing in your .NET and .NET Core applications. No Windows Service or separate process required
Stars: ✭ 7,126 (+20858.82%)
Mutual labels:  hangfire
Hangfire.JobsLogger
A Hangfire extension to store a log during job execution.
Stars: ✭ 21 (-38.24%)
Mutual labels:  hangfire
forge-checkmodels-createissues-revit
Design Check with Design Automation for Revit: Perform a basic design check on models uploaded to BIM 360 and log conflicts as Issues
Stars: ✭ 19 (-44.12%)
Mutual labels:  hangfire

Hangfire.Dashboard.BasicAuthorization for .netcore

Some authorization filters for Hangfire's Dashboard.

Installation

This library is available as a NuGet Package:

Install-Package Hangfire.Dashboard.BasicAuthorization

Usage

Basic authentication

using Hangfire.Dashboard;

public void Configure(IApplicationBuilder app)
{
	app.UseHangfireServer();
	app.UseHangfireDashboard("/hangfire",new DashboardOptions
	{
		Authorization = new[] { new BasicAuthAuthorizationFilter(new BasicAuthAuthorizationFilterOptions
		{
			RequireSsl = false,
			SslRedirect = false,
			LoginCaseSensitive = true,
			Users = new []
			{
				new BasicAuthAuthorizationUser
				{
					Login = "admin",
					PasswordClear =  "test"
				} 
			}

		}) }
	});
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].