commit 1298e4307f587041ae2a31611a92bb92799bff5a from: Omar Polo date: Sat Oct 09 17:09:56 2021 UTC split the cert generation example on multiple lines commit - 679d5d1a61353b6dee4fda67ab35fabb7f4fba09 commit + 1298e4307f587041ae2a31611a92bb92799bff5a blob - 4ced3819628889e194f297ca3b8893da3fac27f6 blob + b9944ead3b4311d8c30bbd6705224a4a736a2e70 --- gmid.1 +++ gmid.1 @@ -661,8 +661,10 @@ using a configuration file. 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 \e +# openssl req \-new \-x509 \e + \-key /etc/ssl/private/example.com.key \e + \-out /etc/ssl/example.com.crt \e + \-days 36500 \-nodes \e \-subj "/CN=example.com" # chmod 600 /etc/ssl/example.com.crt # chmod 600 /etc/ssl/private/example.com.key