diff options
author | Arun Isaac | 2024-10-04 14:27:28 +0100 |
---|---|---|
committer | Arun Isaac | 2024-10-04 14:27:28 +0100 |
commit | 9864821f976b3de355138c12f287a19fdced67df (patch) | |
tree | 42322bf2fd2fd8a3044078733774ec4b55547d6f /guix/forge | |
parent | d7bbb2da365904c2a154946a8eab1be1effb91e9 (diff) | |
download | guix-forge-main.tar.gz guix-forge-main.tar.lz guix-forge-main.zip |
The first time message was out of date. It mentioned `/usr/bin/acme
register' which we no longer have.
* guix/forge/acme.scm (acme-activation): Update first time message.
Diffstat (limited to 'guix/forge')
-rw-r--r-- | guix/forge/acme.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/guix/forge/acme.scm b/guix/forge/acme.scm index 683a51c..231608e 100644 --- a/guix/forge/acme.scm +++ b/guix/forge/acme.scm @@ -1,5 +1,5 @@ ;;; guix-forge --- Guix software forge meta-service -;;; Copyright © 2023 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2023, 2024 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2024 jgart <jgart@dismail.de> ;;; ;;; This file is part of guix-forge. @@ -333,9 +333,10 @@ tls_www_server ;; exists. (unless (file-exists? #$(string-append state-directory "/private/key.pem")) (display " -If this is the first time you are using the acme service, please -register by running `/usr/bin/acme register' and initialize your -certificates by running `/usr/bin/acme renew' +This seems to be the first time you are using the acme service. The +acme service starts out with self-signed certificates. Please run +`/usr/bin/acme renew' to get CA-issued certificates. Thereafter, +certificates will auto-renew via a cron job. ")))))) |