Codemaru 1.0.0.0
QR 코드, 모바일 랜딩 페이지, vCard 연락처 저장과 명함 디자인을 한 화면에서 제공하는 디지털 명함 서비스입니다.
로딩중...
검색중...
일치하는것 없음
CertificateMonitorOptions.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class CertificateMonitorOptions
12{
21 public string CertificateDirectory { get; set; } = @"D:\win-acme\cctvviewer";
22
31 public string[] CertificateFilePatterns { get; set; } = ["*.pem", "*.cer", "*.crt", "*.pfx"];
32
41 public string? PfxPassword { get; set; }
42
51 public string WacsPath { get; set; } = @"D:\win-acme\wacs.exe";
52
61 public string NginxPath { get; set; } = @"C:\nginx\nginx.exe";
62
71 public string NginxWorkingDirectory { get; set; } = @"C:\nginx";
72
81 public string NginxReloadArguments { get; set; } = "-s reload";
82
91 public int WarningDays { get; set; } = 30;
92
101 public int CriticalDays { get; set; } = 15;
102
111 public int MaxCommandOutputChars { get; set; } = 6000;
112}