diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-05-18 11:02:25 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-05-18 11:02:25 +1200 |
commit | 48e4fb1af9560e3f29b51875cba4abef96eaa7f3 (patch) | |
tree | 34b8298b28c21c5ad97fb8be4a89049a1edf66d0 /doc-src | |
parent | 33169d610c3645ae0e193eb604abf2a6c5d85ef9 (diff) | |
parent | d88c3a0e95b22c1714ba28557ba8b2a6b576e97f (diff) | |
download | mitmproxy-48e4fb1af9560e3f29b51875cba4abef96eaa7f3.tar.gz mitmproxy-48e4fb1af9560e3f29b51875cba4abef96eaa7f3.tar.bz2 mitmproxy-48e4fb1af9560e3f29b51875cba4abef96eaa7f3.zip |
Merge pull request #585 from TearsDontFalls/master
docs: Single Qoute for ignore pattern with "!"
Diffstat (limited to 'doc-src')
-rw-r--r-- | doc-src/features/passthrough.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc-src/features/passthrough.html b/doc-src/features/passthrough.html index 3da8692c..7b377c82 100644 --- a/doc-src/features/passthrough.html +++ b/doc-src/features/passthrough.html @@ -68,7 +68,7 @@ Here are some other examples for ignore patterns: --ignore "^example.com:" # Ignore everything but example.com and mitmproxy.org: ---ignore "^(?!example\.com)(?!mitmproxy\.org)" +--ignore '^(?!example\.com)(?!mitmproxy\.org)' # Transparent mode: --ignore 17\.178\.96\.59:443 |