mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
Add Fido2 to Portal services (#1248)
* Add Fido2 to Portal services * Add Fido2 to Sso services
This commit is contained in:
parent
7b2273c46a
commit
ea9849245d
@ -10,6 +10,7 @@ using Microsoft.Extensions.Configuration;
|
|||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Hosting;
|
using Microsoft.Extensions.Hosting;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace Bit.Portal
|
namespace Bit.Portal
|
||||||
{
|
{
|
||||||
@ -60,6 +61,15 @@ namespace Bit.Portal
|
|||||||
services.AddDefaultServices(globalSettings);
|
services.AddDefaultServices(globalSettings);
|
||||||
services.AddCoreLocalizationServices();
|
services.AddCoreLocalizationServices();
|
||||||
|
|
||||||
|
// Fido2
|
||||||
|
services.AddFido2(options =>
|
||||||
|
{
|
||||||
|
options.ServerDomain = new Uri(globalSettings.BaseServiceUri.Vault).Host;
|
||||||
|
options.ServerName = "Bitwarden";
|
||||||
|
options.Origin = globalSettings.BaseServiceUri.Vault;
|
||||||
|
options.TimestampDriftTolerance = 300000;
|
||||||
|
});
|
||||||
|
|
||||||
// Mvc
|
// Mvc
|
||||||
services.AddControllersWithViews()
|
services.AddControllersWithViews()
|
||||||
.AddViewAndDataAnnotationLocalization();
|
.AddViewAndDataAnnotationLocalization();
|
||||||
|
@ -59,6 +59,15 @@ namespace Bit.Sso
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fido2
|
||||||
|
services.AddFido2(options =>
|
||||||
|
{
|
||||||
|
options.ServerDomain = new Uri(globalSettings.BaseServiceUri.Vault).Host;
|
||||||
|
options.ServerName = "Bitwarden";
|
||||||
|
options.Origin = globalSettings.BaseServiceUri.Vault;
|
||||||
|
options.TimestampDriftTolerance = 300000;
|
||||||
|
});
|
||||||
|
|
||||||
// Authentication
|
// Authentication
|
||||||
services.AddDistributedIdentityServices(globalSettings);
|
services.AddDistributedIdentityServices(globalSettings);
|
||||||
services.AddAuthentication()
|
services.AddAuthentication()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user