From 3c0f4388f6e807e215df4a7265b80132e2562d9a Mon Sep 17 00:00:00 2001 From: Lento Manickathan Date: Mon, 28 Mar 2022 14:52:15 +0200 Subject: [PATCH] fixed typo `cerbot` -> `certbot` --- docs/guides/security/generating_ssl_keys_lets_encrypt.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/security/generating_ssl_keys_lets_encrypt.md b/docs/guides/security/generating_ssl_keys_lets_encrypt.md index 6895b5e588..f58c90d3ec 100644 --- a/docs/guides/security/generating_ssl_keys_lets_encrypt.md +++ b/docs/guides/security/generating_ssl_keys_lets_encrypt.md @@ -6,7 +6,7 @@ tested with: 8.5 tags: - security - ssl - - cerbot + - certbot --- # Generating SSL Keys - Let's Encrypt @@ -57,13 +57,13 @@ dnf install epel-release Then, just install the appropriate packages, depending on whether you're using Apache or Nginx as your web server. For Apache that's: ```bash -dnf install certbot python3-cerbot-apache +dnf install certbot python3-certbot-apache ``` For Nginx, just change out one... partial word? ```bash -dnf install certbot python3-cerbot-nginx +dnf install certbot python3-certbot-nginx ``` You can always install both server modules if necessary, of course.