diff options
author | Luke Bratch <luke@bratch.co.uk> | 2020-10-24 17:16:37 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2020-10-24 17:16:37 +0100 |
commit | 72ed376a969065f913401d1d0d0db0fd27877c75 (patch) | |
tree | 0777fed347912889961ec9f8ca858625d3799c4f | |
parent | 678411cc64c1a619ccc228028fbee0788f1e5ffd (diff) |
Use $ instead of # to show shell examples in README.
-rw-r--r-- | README | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -89,8 +89,8 @@ need to provide both a certificate and a key file. One way of creating these is to use OpenSSL: -# openssl genrsa 2048 > ~/.blabouncer/key.pem -# openssl req -x509 -days 30 -new -key ~/.blabouncer/key.pem -out ~/.blabouncer/cert.pem +$ openssl genrsa 2048 > ~/.blabouncer/key.pem +$ openssl req -x509 -days 30 -new -key ~/.blabouncer/key.pem -out ~/.blabouncer/cert.pem But you can create them however you like, or disable client TLS (not recommended) using the "clienttls" configuration file option. |