From e0eb60288d1b6bcb14a708e90a39fc3ad4944e61 Mon Sep 17 00:00:00 2001 From: "Hahn Axel (hahn)" <axel.hahn@iml.unibe.ch> Date: Thu, 19 May 2022 16:34:08 +0200 Subject: [PATCH] update docs --- docs/20_Configuration.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/20_Configuration.md b/docs/20_Configuration.md index 8d46af5..a917bac 100644 --- a/docs/20_Configuration.md +++ b/docs/20_Configuration.md @@ -29,6 +29,9 @@ variable expansion. | CM_certmatch | regex | matcher to identify domains with dns access; all other domains will use dns alias mode | "\.example\.com" | | CM_challenge_alias | string | domain for validation with dns alias mode | "example.com" | | CM_user | string | force a user to execute cm.sh | default: none (=any user can run cm.sh) | +| CM_showdebug | 0\|1 | flag: show debug infos on console (STDOUT) | default: 0 | +| CM_writelog | 0\|1 | flag: write a log for created/ renewd/ deleted certs | default: 1 | +| CM_writedebuglog | 0\|1 | flag: write a log for executed functions with timer and process count | default: 0 | ## inc_config.sh.dist @@ -84,5 +87,17 @@ export ACME=../acme.sh/acme.sh # like Ansible or puppet; default: none (=any user can run cm.sh) # export CM_user="ansible" +# flag: show debug infos on console (STDOUT) +# default: 0 +export CM_showdebug=1 + +# flag: write a log for created/ renewd/ deleted certs +# default: 1 +# export CM_writelog=1 + +# flag: write a log for executed functions with timer and process count +# default: 0 +# export CM_writedebuglog=0 + # ---------------------------------------------------------------------- -``` \ No newline at end of file +``` -- GitLab