From 1d83ac3c2bf5b9ca9198c090d14d8c1a2d67beb7 Mon Sep 17 00:00:00 2001
From: Yann Ylavic
Date: Mon, 20 Feb 2017 08:38:58 +0000
Subject: [PATCH] build doc.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1783723 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/mod/mod_proxy_http2.html.en | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/docs/manual/mod/mod_proxy_http2.html.en b/docs/manual/mod/mod_proxy_http2.html.en
index 8a266c00dd..9238b7f7ca 100644
--- a/docs/manual/mod/mod_proxy_http2.html.en
+++ b/docs/manual/mod/mod_proxy_http2.html.en
@@ -94,12 +94,20 @@
backend connections for a reverse proxy.
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.
+