From c2e4749d17c90368167996e59611efc9c8918dd0 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Mon, 1 May 2023 16:48:44 -0700 Subject: [PATCH] doc: fix wrong env var name (#1908) --- docs/content/usage/cli/Obtain-a-Certificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/usage/cli/Obtain-a-Certificate.md b/docs/content/usage/cli/Obtain-a-Certificate.md index 4e22838f..e6f477b0 100644 --- a/docs/content/usage/cli/Obtain-a-Certificate.md +++ b/docs/content/usage/cli/Obtain-a-Certificate.md @@ -122,7 +122,7 @@ postfix_cert_dir="/etc/postfix/certificates" # our Postfix server only handles mail for @example.com domain if [ "$LEGO_CERT_DOMAIN" = "example.com" ]; then install -u postfix -g postfix -m 0644 "$LEGO_CERT_PATH" "$postfix_cert_dir" - install -u postfix -g postfix -m 0640 "$LEGO_KEY_PATH" "$postfix_cert_dir" + install -u postfix -g postfix -m 0640 "$LEGO_CERT_KEY_PATH" "$postfix_cert_dir" systemctl reload postfix@-service fi