Add certificate params to main config

This commit is contained in:
Zontreck 2020-06-17 18:34:07 -07:00
parent 7637140aad
commit 0f1eec56fb
3 changed files with 21 additions and 3 deletions

View file

@ -63,6 +63,8 @@ namespace Bot
public string WebServerIP { get; set; } = "zontreck.dev";
public bool UseSSL { get; set; } = false;
public string SSLCertificatePFX { get; set; } = "certificate.pfx";
public string SSLCertificatePWD { get; set; } = "";
public Dictionary<UUID, int> BotAdmins { get; set; } = new Dictionary<UUID, int>();