-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathConstants.cs
More file actions
18 lines (17 loc) · 761 Bytes
/
Constants.cs
File metadata and controls
18 lines (17 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
namespace WebAppSSLManager.Models
{
public class Constants
{
public const string AppPropertiesFileName = "appproperties.json";
public const string CertInfoFileName = "certinfo.json";
public const string AccountKeyFileName = "accountkey.pem";
public const string DefaultCertificatePassword = "C0mpl1c4t3d57r1ng";
public const string CertificateBlobContainer = "certificates";
public const string DefaultEmailSender = "AzureWebAppSSLManager@dbtek.com.hk";
public const string DefaultCA = "Let's Encrypt Authority";
public const string DefaultIntermediate = "R3";
public const int DefaultBatchSize = 0;
public const int DaysBeforeExpiryToRenew = 30;
}
}