Explicitly mark comment lines in builtin sheets.

This commit is contained in:
Lars Yencken
2013-08-22 11:34:11 +10:00
parent f89d887c21
commit 8245d3f4ec
24 changed files with 86 additions and 86 deletions

View File

@ -1,10 +1,10 @@
To create a 2048-bit private key:
# To create a 2048-bit private key:
openssl genrsa -out server.key 2048
To create the Certificate Signing Request (CSR):
# To create the Certificate Signing Request (CSR):
openssl req -new -key server.key -out server.csr
To sign a certificate using a private key and CSR:
# To sign a certificate using a private key and CSR:
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
(The above commands may be run in sequence to generate a self-signed SSL certificate.)
# (The above commands may be run in sequence to generate a self-signed SSL certificate.)