From: Yann Ylavic Date: Mon, 20 Feb 2017 08:38:16 +0000 (+0000) Subject: Fix ProxyPassReverse schemes in mod_proxy_http2's doc (examples). X-Git-Tag: 2.5.0-alpha~646 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82af8b62ab8f09ccc4e79ae2b640dc07688f068c;p=thirdparty%2Fapache%2Fhttpd.git Fix ProxyPassReverse schemes in mod_proxy_http2's doc (examples). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1783722 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_proxy_http2.xml b/docs/manual/mod/mod_proxy_http2.xml index a92f2ea4588..5cf16dd64b3 100644 --- a/docs/manual/mod/mod_proxy_http2.xml +++ b/docs/manual/mod/mod_proxy_http2.xml @@ -82,16 +82,24 @@ HTTP/2 (TLS) ProxyPass "/app" "h2://app.example.com" -ProxyPassReverse "/app" "h2://app.example.com" +ProxyPassReverse "/app" "https://app.example.com" HTTP/2 (cleartext) ProxyPass "/app" "h2c://app.example.com" -ProxyPassReverse "/app" "h2c://app.example.com" +ProxyPassReverse "/app" "http://app.example.com" + + +

The schemes to configure above in + ProxyPassReverse for reverse proxying + h2 (or h2c) protocols are the usual + https (resp. http) as expected/used by + the user agent.

+
Request notes