diff options
Diffstat (limited to 'doc-src/ssl.html')
-rw-r--r-- | doc-src/ssl.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc-src/ssl.html b/doc-src/ssl.html index 68e9a57c..c904cf61 100644 --- a/doc-src/ssl.html +++ b/doc-src/ssl.html @@ -34,6 +34,23 @@ testing system or browser to trust the __mitmproxy__ CA as a signing root authority. +Using a custom certificate +-------------------------- + +You can use your own certificate by passing the __--cert__ option to mitmproxy. + +The certificate file is expected to be in the PEM format. You can generate +a certificate in this format using these instructions: + +<pre class="terminal"> +> openssl genrsa -out cert.key 8192 +> openssl req -new -x509 -key cert.key -out cert.crt + (Specify the mitm domain as Common Name, e.g. *.google.com) +> cat cert.key cert.crt > cert.pem +> mitmproxy --cert=cert.pem +</pre> + + Installing the mitmproxy CA --------------------------- |