diff options
author | Maximilian Hils <git@maximilianhils.com> | 2020-04-28 11:30:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 11:30:39 +0200 |
commit | 433c588c4cfc20e181b2e865814a350dd7fd9f06 (patch) | |
tree | 93ce1494c75a508d73c2e22f501c0c8a78dac4ff /docs | |
parent | e9d5b6d9f590e514f27cc32abf001a694a3e8795 (diff) | |
download | mitmproxy-433c588c4cfc20e181b2e865814a350dd7fd9f06.tar.gz mitmproxy-433c588c4cfc20e181b2e865814a350dd7fd9f06.tar.bz2 mitmproxy-433c588c4cfc20e181b2e865814a350dd7fd9f06.zip |
fix typo in certificates documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/src/content/concepts-certificates.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/content/concepts-certificates.md b/docs/src/content/concepts-certificates.md index 9b5f1a83..cf3447c7 100644 --- a/docs/src/content/concepts-certificates.md +++ b/docs/src/content/concepts-certificates.md @@ -121,7 +121,7 @@ instructions: openssl genrsa -out cert.key 2048 # (Specify the mitm domain as Common Name, e.g. \*.google.com) openssl req -new -x509 -key cert.key -out cert.crt -cat cert.key cert.crt \> cert.pem +cat cert.key cert.crt > cert.pem {{< / highlight >}} Now, you can run mitmproxy with the generated certificate: |