1
0
mirror of https://github.com/bitwarden/server synced 2026-02-18 02:19:06 +00:00
Files
server/src/Core/Settings/ISsoCookieVendorSettings.cs
Derek Nance 415821f173 [PM-29142] Config for SSO cookie vending (#6880)
This config may be used when a load balancer in front of Bitwarden is
first verifying an auth cookie issued by an IdP before proxying the
request to Bitwarden.
2026-01-22 15:20:38 -06:00

9 lines
190 B
C#

namespace Bit.Core.Settings;
public interface ISsoCookieVendorSettings
{
string IdpLoginUrl { get; set; }
string CookieName { get; set; }
string CookieDomain { get; set; }
}