* rework server responsibilities add remote configuration * start metrics only when compiled as not debug * add some more logging to discord bot * fixes of some casts * make metrics port configurable, minor fixes * add docker bullshit * md formatting * adjustments to docker stuff * fix docker json files, fix some stuff in discord bot, add /useradd for Discord bot * adjust docker configs and fix sharded.bat * fixes for logs, cache file provider repeat trying to open filestream Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
25 lines
949 B
C#
25 lines
949 B
C#
using System.Text;
|
|
|
|
namespace MareSynchronosShared.Utils;
|
|
|
|
public class MareConfigurationAuthBase : MareConfigurationBase
|
|
{
|
|
public Uri MainServerGrpcAddress { get; set; } = null;
|
|
[RemoteConfiguration]
|
|
public int FailedAuthForTempBan { get; set; } = 5;
|
|
[RemoteConfiguration]
|
|
public int TempBanDurationInMinutes { get; set; } = 5;
|
|
[RemoteConfiguration]
|
|
public List<string> WhitelistedIps { get; set; } = new();
|
|
|
|
public override string ToString()
|
|
{
|
|
StringBuilder sb = new();
|
|
sb.AppendLine(base.ToString());
|
|
sb.AppendLine($"{nameof(MainServerGrpcAddress)} => {MainServerGrpcAddress}");
|
|
sb.AppendLine($"{nameof(FailedAuthForTempBan)} => {FailedAuthForTempBan}");
|
|
sb.AppendLine($"{nameof(TempBanDurationInMinutes)} => {TempBanDurationInMinutes}");
|
|
sb.AppendLine($"{nameof(WhitelistedIps)} => {string.Join(", ", WhitelistedIps)}");
|
|
return sb.ToString();
|
|
}
|
|
} |