mirror of
https://github.com/bitwarden/server.git
synced 2026-02-16 22:03:15 +08: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.
8 lines
171 B
C#
8 lines
171 B
C#
namespace Bit.Core.Settings;
|
|
|
|
public interface ICommunicationSettings
|
|
{
|
|
string Bootstrap { get; set; }
|
|
ISsoCookieVendorSettings SsoCookieVendor { get; set; }
|
|
}
|