diff options
author | Carlo Zancanaro <carlo@zancanaro.id.au> | 2024-01-31 11:46:24 +0000 |
---|---|---|
committer | Clément Lassieur <clement@lassieur.org> | 2024-01-31 16:54:16 +0100 |
commit | d4a4b12f0ac52563254d34dc1e26030b354d3f73 (patch) | |
tree | dfe639addb0c776f6cf568c4f300f2f4b1f754af /doc/guix.texi | |
parent | fc0ec9a3cc2707260b88c79286e91fa1a3a594cb (diff) | |
download | guix-d4a4b12f0ac52563254d34dc1e26030b354d3f73.tar.gz |
services: certbot: Reload nginx in deploy hook.
* gnu/services/certbot.scm (certbot-deploy-hook): Reload nginx. * doc/guix.texi (Certificate services): Remove deploy-hook from example. Change-Id: Ibb10481170a6fda7df72492072b939dd6a6ad176 Signed-off-by: Clément Lassieur <clement@lassieur.org>
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 732abceb0f..c71d7e94cf 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -32562,21 +32562,13 @@ A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example: @lisp -(define %certbot-deploy-hook - (program-file "certbot-deploy-hook.scm" - (with-imported-modules '((gnu services herd)) - #~(begin - (use-modules (gnu services herd)) - (with-shepherd-action 'nginx ('reload) result result))))) - (service certbot-service-type (certbot-configuration (email "foo@@example.net") (certificates (list (certificate-configuration - (domains '("example.net" "www.example.net")) - (deploy-hook %certbot-deploy-hook)) + (domains '("example.net" "www.example.net"))) (certificate-configuration (domains '("bar.example.net"))))))) @end lisp |