@drumee/setup-infra 1.0.16 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -0
- package/package.json +1 -1
- package/templates/etc/drumee/drumee.sh.tpl +1 -0
package/index.js
CHANGED
|
@@ -17,6 +17,7 @@ const JSON_OPT = { spaces: 2, EOL: "\r\n" };
|
|
|
17
17
|
let {
|
|
18
18
|
ACME_DIR,
|
|
19
19
|
ACME_EMAIL_ACCOUNT,
|
|
20
|
+
ACME_ENV_FILE,
|
|
20
21
|
ADMIN_EMAIL,
|
|
21
22
|
BACKUP_STORAGE,
|
|
22
23
|
CERTS_DIR,
|
|
@@ -342,6 +343,7 @@ function getSysConfigs() {
|
|
|
342
343
|
const opt = [
|
|
343
344
|
["acme_dir", ACME_DIR],
|
|
344
345
|
["acme_email_account", ACME_EMAIL_ACCOUNT, ADMIN_EMAIL],
|
|
346
|
+
["acme_env_file", ACME_ENV_FILE],
|
|
345
347
|
["admin_email", ADMIN_EMAIL],
|
|
346
348
|
["backup_storage", backup_storage, ""],
|
|
347
349
|
["certs_dir", CERTS_DIR],
|
package/package.json
CHANGED