Make digest key options have a default value

This commit is contained in:
jvyden 2022-02-16 14:11:33 -05:00
commit 6ffb7920f5
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -113,8 +113,8 @@ public class ServerSettings
public string DbConnectionString { get; set; } = "server=127.0.0.1;uid=root;pwd=lighthouse;database=lighthouse";
public string ExternalUrl { get; set; } = "http://localhost:10060";
public string ServerDigestKey { get; set; }
public string AlternateDigestKey { get; set; }
public string ServerDigestKey { get; set; } = "";
public string AlternateDigestKey { get; set; } = "";
public bool UseExternalAuth { get; set; }
public bool CheckForUnsafeFiles { get; set; } = true;