mirror of
https://github.com/bitwarden/server
synced 2026-02-18 02:19:06 +00:00
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.
9 lines
190 B
C#
9 lines
190 B
C#
namespace Bit.Core.Settings;
|
|
|
|
public interface ISsoCookieVendorSettings
|
|
{
|
|
string IdpLoginUrl { get; set; }
|
|
string CookieName { get; set; }
|
|
string CookieDomain { get; set; }
|
|
}
|