Update letsencrypt.md

This commit is contained in:
Maxim Devaev 2022-07-04 07:40:15 +03:00 committed by GitHub
parent 2632726680
commit 1fa53881b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -147,13 +147,13 @@ This example shows that PiKVM may not be accessible from the internet, but you c
Update permissions: Update permissions:
``` ```
kvmd-pstrun -- chmod 600 /var/lib/kvmd/pst/data/certbot/runroot/.route53.auth # kvmd-pstrun -- chmod 600 /var/lib/kvmd/pst/data/certbot/runroot/.route53.auth
``` ```
4. Obtain the certificate: 4. Obtain the certificate:
``` ```
export AWS_SHARED_CREDENTIALS_FILE="/var/lib/kvmd/pst/data/certbot/runroot/.route53.auth" # export AWS_SHARED_CREDENTIALS_FILE="/var/lib/kvmd/pst/data/certbot/runroot/.route53.auth"
kvmd-certbot certonly \ # kvmd-certbot certonly \
--dns-route53 \ --dns-route53 \
--agree-tos \ --agree-tos \
-n \ -n \
@ -163,12 +163,12 @@ This example shows that PiKVM may not be accessible from the internet, but you c
4. Enable automatic certificate renewal: 4. Enable automatic certificate renewal:
Create the file: */etc/conf.d/kvmd-certbot* with the following contents so the renewall service can find the authentication file containing the AWS credentials: Create the file: `/etc/conf.d/kvmd-certbot` with the following contents so the renewall service can find the authentication file containing the AWS credentials:
``` ```
AWS_SHARED_CREDENTIALS_FILE="/var/lib/kvmd/pst/data/certbot/runroot/.route53.auth" AWS_SHARED_CREDENTIALS_FILE="/var/lib/kvmd/pst/data/certbot/runroot/.route53.auth"
``` ```
Now enable the renewal service: Now enable the renewal service:
``` ```
systemctl enable --now kvmd-certbot.timer # systemctl enable --now kvmd-certbot.timer
``` ```