16 lines
574 B
C#
16 lines
574 B
C#
namespace ServerMonitorManager.Control;
|
|
|
|
public sealed class ControlOptions
|
|
{
|
|
public const string SectionName = "Control";
|
|
|
|
public string DatabasePath { get; init; } = "/var/lib/ochenstarik-server-monitor-manager/control.db";
|
|
|
|
public string CertificateAuthorityPath { get; init; } = "/etc/ochenstarik-server-monitor-manager/control-ca.pfx";
|
|
|
|
public string? CertificateAuthorityPassword { get; init; }
|
|
|
|
public int HeartbeatSeconds { get; init; } = 30;
|
|
|
|
public string HubHelperPath { get; init; } = "/usr/local/libexec/ochenstarik-smm-policy-apply";
|
|
}
|