diff options
author | Omar Polo <op@omarpolo.com> | 2021-07-29 09:48:43 +0200 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-07-29 09:48:43 +0200 |
commit | 2bb1776bacc96357fc182ef396508fe71816e0b0 (patch) | |
tree | f41bd559d538c81689408143d76ca313538ee491 /gmid.1 | |
parent | 301e039d24172a5e15bed60701bf279798d28621 (diff) |
keep the openssl key generation example under 80 columns
Diffstat (limited to 'gmid.1')
-rw-r--r-- | gmid.1 | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -662,7 +662,8 @@ First, the RSA certificate is created using a wildcard common name: .Bd -literal -offset indent # openssl genrsa \-out /etc/ssl/private/example.com.key 4096 # openssl req \-new \-x509 \-key /etc/ssl/private/example.com.key \e - \-out /etc/ssl/example.com.crt \-days 36500 \-nodes \-subj "/CN=*.com" + \-out /etc/ssl/example.com.crt \-days 36500 \-nodes \e + \-subj "/CN=example.com" # chmod 600 /etc/ssl/example.com.crt # chmod 600 /etc/ssl/private/example.com.key .Ed |