1
0
mirror of https://github.com/bitwarden/server synced 2026-01-04 01:23:25 +00:00

load certs from azure storage

This commit is contained in:
Kyle Spearrin
2019-07-10 20:05:07 -04:00
parent f97539d558
commit b5d2a1da75
4 changed files with 67 additions and 9 deletions

View File

@@ -11,6 +11,7 @@ namespace Bit.Core
public virtual string ProjectName { get; set; }
public virtual string LogDirectory { get; set; }
public virtual string LicenseDirectory { get; set; }
public string LicenseCertificatePassword { get; set; }
public virtual string PushRelayBaseUri { get; set; }
public virtual string InternalIdentityKey { get; set; }
public virtual string HibpBreachApiKey { get; set; }
@@ -141,6 +142,7 @@ namespace Bit.Core
public class DataProtectionSettings
{
public string CertificateThumbprint { get; set; }
public string CertificatePassword { get; set; }
public string Directory { get; set; }
}