From 53f394bc1162d62975444ae72154f327ff5ba036 Mon Sep 17 00:00:00 2001 From: Himanshu Gohel <1551217+hgohel@users.noreply.github.com> Date: Mon, 3 Feb 2025 20:10:46 -0500 Subject: [PATCH] Fix typo in hooks documentation Fix a typo in the description of Le_PostHook. --- docs/Hooks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Hooks.md b/docs/Hooks.md index 53ded99b..f853f068 100644 --- a/docs/Hooks.md +++ b/docs/Hooks.md @@ -59,7 +59,7 @@ $ docker run --detach \ #### Verification: If you want to check wether the hook-command is delivered properly to [acme.sh](https://github.com/acmesh-official/acme.sh/), you should check `/etc/acme.sh/[EMAILADDRESS]/[DOMAIN]/[DOMAIN].conf`. The variable `Le_PreHook` contains the Pre-Hook-Command base64 encoded. -The variable `Le_PostHook` contains the Pre-Hook-Command base64 encoded. +The variable `Le_PostHook` contains the Post-Hook-Command base64 encoded. #### Limitations * The commands that can be used in the hooks are limited to the commands available inside the **acme-companion** container. `curl` and `wget` are available, therefore it is possible to communicate with tools outside the container via HTTP, allowing for complex actions to be implemented outside or in other containers. @@ -67,4 +67,4 @@ The variable `Le_PostHook` contains the Pre-Hook-Command base64 encoded. #### Use-cases * Changing some firewall rules just for the ACME authorization, so the ports 80 and/or 443 don't have to be publicly reachable at all time. * Certificate "post processing" / conversion to another format. -* Monitoring. \ No newline at end of file +* Monitoring.