mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
17 lines
649 B
Python
17 lines
649 B
Python
from countershape import Page
|
|
|
|
pages = [
|
|
Page("anticache.html", "Anticache"),
|
|
Page("clientreplay.html", "Client-side replay"),
|
|
Page("filters.html", "Filter expressions"),
|
|
Page("upstreamproxy.html", "Upstream proxy mode"),
|
|
Page("setheaders.html", "Set Headers"),
|
|
Page("serverreplay.html", "Server-side replay"),
|
|
Page("sticky.html", "Sticky cookies and auth"),
|
|
Page("proxyauth.html", "Proxy Authentication"),
|
|
Page("replacements.html", "Replacements"),
|
|
Page("reverseproxy.html", "Reverse proxy mode"),
|
|
Page("upstreamcerts.html", "Upstream Certs"),
|
|
Page("responsestreaming.html", "Response Streaming"),
|
|
]
|