diff --git a/doc-src/features/reverseproxy.html b/doc-src/features/reverseproxy.html
index ea91fe1f3..1c57f0b23 100644
--- a/doc-src/features/reverseproxy.html
+++ b/doc-src/features/reverseproxy.html
@@ -7,7 +7,22 @@ mitmproxy forwards HTTP proxy requests to an upstream proxy server.
- command-line | -R http[s]://hostname[:port] |
+ command-line | -R schema://hostname[:port] |
+
+Here, **schema** is one of http, https, http2https or https2http. The latter
+two extended schema specifications control the use of HTTP and HTTPS on
+mitmproxy and the upstream server. You can indicate that mitmproxy should use
+HTTP, and the upstream server uses HTTPS like this:
+
+ http2https://hostname:port
+
+And you can indicate that mitmproxy should use HTTPS while the upstream
+service uses HTTP like this:
+
+ https2http://hostname:port
+
+
+
diff --git a/doc-src/features/upstreamproxy.html b/doc-src/features/upstreamproxy.html
index bb354cd3d..47bc115da 100644
--- a/doc-src/features/upstreamproxy.html
+++ b/doc-src/features/upstreamproxy.html
@@ -11,3 +11,17 @@ mitmproxy forwards ordinary HTTP requests to an upstream server.
+
+Here, **schema** is one of http, https, http2https or https2http. The latter
+two extended schema specifications control the use of HTTP and HTTPS on
+mitmproxy and the upstream server. You can indicate that mitmproxy should use
+HTTP, and the upstream server uses HTTPS like this:
+
+ http2https://hostname:port
+
+And you can indicate that mitmproxy should use HTTPS while the upstream
+service uses HTTP like this:
+
+ https2http://hostname:port
+
+