diff options
author | Farhan Khan <farhan@farhan.codes> | 2020-08-13 21:24:08 -0400 |
---|---|---|
committer | Farhan Khan <farhan@farhan.codes> | 2020-08-13 21:24:08 -0400 |
commit | f2665547f59a7043cf8bac9d39c56a9b717d5099 (patch) | |
tree | 9a766e953d4ce1cd652c0e33f2a85c07e884619b /docs/installation | |
parent | 24eb917dbc752a81716699ebd23ad9ff9cbd6a24 (diff) | |
download | pleroma-f2665547f59a7043cf8bac9d39c56a9b717d5099.tar.gz pleroma-f2665547f59a7043cf8bac9d39c56a9b717d5099.zip |
acme updates
Diffstat (limited to 'docs/installation')
-rw-r--r-- | docs/installation/freebsd_en.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/installation/freebsd_en.md b/docs/installation/freebsd_en.md index a8741e565..386a0ae10 100644 --- a/docs/installation/freebsd_en.md +++ b/docs/installation/freebsd_en.md @@ -119,10 +119,11 @@ It should now be possible to issue a cert (replace `example.com` with your domain name): ``` -$ sudo -Hu acme -g acme acme.sh --issue -d example.com --stateless -$ acme.sh --install-cert -d example.com \ - --key-file /path/to/keyfile/in/nginx/key.pem \ - --fullchain-file /path/to/fullchain/nginx/cert.pem \ +# mkdir -p /etc/ssl/example.com +# sudo -Hu acme -g acme acme.sh --issue -d example.com --stateless +# acme.sh --home /var/db/acme/.acme.sh/ --install-cert -d example.com \ + --key-file /etc/ssl/example.com/key.pem + --fullchain-file /etc/ssl/example.com/fullchain.pem ``` Let's add auto-renewal to `/etc/daily.local` |