diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-09-16 02:53:01 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-09-16 02:53:01 +0200 |
commit | 457025df9a64f312685774cb743eeb52cd37bd3f (patch) | |
tree | 98de6633322059ac95ab50e4b2d3129aa6051b58 /doc-src/features/serverreplay.html | |
parent | 436a9ea8398e25709f139fde609aa74e8fb3f3f8 (diff) | |
parent | c3f73552b82923e8da224529895332c44bf8dace (diff) | |
download | mitmproxy-457025df9a64f312685774cb743eeb52cd37bd3f.tar.gz mitmproxy-457025df9a64f312685774cb743eeb52cd37bd3f.tar.bz2 mitmproxy-457025df9a64f312685774cb743eeb52cd37bd3f.zip |
Merge pull request #751 from mitmproxy/readthedocs
Move Docs to readthedocs
Diffstat (limited to 'doc-src/features/serverreplay.html')
-rw-r--r-- | doc-src/features/serverreplay.html | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/doc-src/features/serverreplay.html b/doc-src/features/serverreplay.html deleted file mode 100644 index 1282be06..00000000 --- a/doc-src/features/serverreplay.html +++ /dev/null @@ -1,35 +0,0 @@ - -- command-line: _-S path_ -- mitmproxy shortcut: _S_ - -Server-side replay lets us replay server responses from a saved HTTP -conversation. - -Matching requests with responses --------------------------------- - -By default, __mitmproxy__ excludes request headers when matching incoming -requests with responses from the replay file. This works in most circumstances, -and makes it possible to replay server responses in situations where request -headers would naturally vary, e.g. using a different user agent. The _--rheader -headername_ command-line option allows you to override this behaviour by -specifying individual headers that should be included in matching. - - -Response refreshing -------------------- - -Simply replaying server responses without modification will often result in -unexpected behaviour. For example cookie timeouts that were in the future at -the time a conversation was recorded might be in the past at the time it is -replayed. By default, __mitmproxy__ refreshes server responses before sending -them to the client. The __date__, __expires__ and __last-modified__ headers are -all updated to have the same relative time offset as they had at the time of -recording. So, if they were in the past at the time of recording, they will be -in the past at the time of replay, and vice versa. Cookie expiry times are -updated in a similar way. - -You can turn off response refreshing using the _--norefresh_ argument, or using -the _o_ options shortcut within __mitmproxy__. - - |