1
0
Fork 0

Make ssl stuff copy pastable

This commit is contained in:
Andreas Streichardt 2016-10-24 13:33:40 +02:00
parent bdc51eecb7
commit 9593c42c4d
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
@brief keyfile containing server certificate
`--ssl.keyfile filename`
If SSL encryption is used, this option must be used to specify the filename
If SSL encryption is used, this option must be used to specify the filename
of the server private key. The file must be PEM formatted and contain both
the certificate and the server's private key.
@ -23,7 +23,7 @@ cp server.key server.key.org
openssl rsa -in server.key.org -out server.key
# sign the csr with the key, creates certificate PEM file "server.crt"
openssl x509 -req -days 365 -in server.csr -signkey server.key -out
openssl x509 -req -days 365 -in server.csr -signkey server.key -out \
server.crt
# combine certificate and key into single PEM file "server.pem"