From 06fba18106a8f759ec6f08453e86772a170c653b Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Sun, 31 May 2015 03:14:14 +0200 Subject: fix #599 --- doc-src/features/passthrough.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc-src/features/passthrough.html') diff --git a/doc-src/features/passthrough.html b/doc-src/features/passthrough.html index 7b377c82..17cc0259 100644 --- a/doc-src/features/passthrough.html +++ b/doc-src/features/passthrough.html @@ -51,10 +51,10 @@ $ mitmdump -v 127.0.0.1:50588: request -> CONNECT example.com:443 HTTP/1.1 127.0.0.1:50588: Set new server address: example.com:443 -127.0.0.1:50588: serverconnect - -> example.com:443 +127.0.0.1:50588: serverconnect + -> example.com:443 ^C -$ mitmproxy --ignore ^example\.com:443$ +$ mitmproxy --ignore ^example\.com:443$ Here are some other examples for ignore patterns: @@ -62,10 +62,10 @@ Here are some other examples for ignore patterns: # Exempt traffic from the iOS App Store (the regex is lax, but usually just works): --ignore apple.com:443 # "Correct" version without false-positives: ---ignore "^(.+\.)?apple\.com:443$" +--ignore '^(.+\.)?apple\.com:443$' # Ignore example.com, but not its subdomains: ---ignore "^example.com:" +--ignore '^example.com:' # Ignore everything but example.com and mitmproxy.org: --ignore '^(?!example\.com)(?!mitmproxy\.org)' -- cgit v1.2.3