aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Łyszczek <michal.lyszczek@bofc.pl>2019-08-20 19:43:58 +0200
committerMichał Łyszczek <michal.lyszczek@bofc.pl>2019-08-20 19:44:52 +0200
commit0a68f524db0cea3df53bce592dccdafda1e7f257 (patch)
tree24bd2a384b8ce4244de049fc80c17b2cefdd7d7a
parent11cd003c0c5452cfc96e8c2c0a7cd1831b95b0e0 (diff)
downloadtermsend-0a68f524db0cea3df53bce592dccdafda1e7f257.tar.gz
termsend-0a68f524db0cea3df53bce592dccdafda1e7f257.tar.bz2
termsend-0a68f524db0cea3df53bce592dccdafda1e7f257.zip
kurload.1: rename kurload.crt to kl.crt to make line shorter
And fit in 80 lines with indents no_ci Signed-off-by: Michał Łyszczek <michal.lyszczek@bofc.pl>
-rw-r--r--kurload.18
1 files changed, 4 insertions, 4 deletions
diff --git a/kurload.1 b/kurload.1
index 64857a8..ebea2b0 100644
--- a/kurload.1
+++ b/kurload.1
@@ -227,17 +227,17 @@ Both key and self-signed certificate can be generated via
.br
.nf
# create new 2048 bit long RSA key
- openssl genrsa -out kurload.key 2048
+ openssl genrsa -out kl.key 2048
# create self-signed certificate
- openssl req -new -key kurload.key -x509 -days 3650 -out kurload.crt
+ openssl req -new -key kl.key -x509 -days 3650 -out kl.crt
# key should be secret and unavailable to outer world
- chmod 600 kurload.key
+ chmod 600 kl.key
.fi
.br
.br
Keep in mind, that users will have to have your
-.B kurload.crt
+.B kl.crt
file in order to verify your server.
Without that, user will not be sure if your server really belongs to you
and will be suscible to man-in-the-middle attack.