-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
31 lines (31 loc) · 998 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module.exports = {
qcloud: {
enable: false,
secretId: "",
secretKey: "",
forceUploadDays: 15, // 距离证书过期多少天,强制上传证书
startTime: '2024-02-01 04:00:00', // 第一次任务执行时间
interval: 24 * 60 * 60 * 1000, // 每隔多少毫秒执行一次
founder: "acme.sh" // 证书查找器(使用内置 acme.sh 查找器)
},
qiniu: {
enable: false,
accessKey: "",
secretKey: "",
forceUploadDays: 15,
startTime: '2024-02-01 16:00:00',
interval: 24 * 60 * 60 * 1000,
founder: "acme.sh"
},
mailserver: {
enable: false,
smtp_host: "smtp.example.com",
smtp_port: 465,
smtp_secure: true,
smtp_username: "[email protected]",
smtp_password: "password",
sender_name: "SSL Updater",
sender_email: "[email protected]",
receiver: ["[email protected]"]
}
}