backend connections for a reverse proxy. </p>
<div class="example"><h3>HTTP/2 (TLS)</h3><pre class="prettyprint lang-config">ProxyPass "/app" "h2://app.example.com"
-ProxyPassReverse "/app" "h2://app.example.com"</pre>
+ProxyPassReverse "/app" "https://app.example.com"</pre>
</div>
<div class="example"><h3>HTTP/2 (cleartext)</h3><pre class="prettyprint lang-config">ProxyPass "/app" "h2c://app.example.com"
-ProxyPassReverse "/app" "h2c://app.example.com"</pre>
+ProxyPassReverse "/app" "http://app.example.com"</pre>
</div>
+
+ <div class="note">
+ <p>The schemes to configure above in
+ <code class="directive">ProxyPassReverse</code> for reverse proxying
+ <code>h2</code> (or <code>h2c</code>) protocols are the usual
+ <code>https</code> (resp. <code>http</code>) as expected/used by
+ the user agent.</p>
+ </div>
</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="section">
<h2><a name="notes" id="notes">Request notes</a></h2>
<example><title>HTTP/2 (TLS)</title>
<highlight language="config">
ProxyPass "/app" "h2://app.example.com"
-ProxyPassReverse "/app" "h2://app.example.com"
+ProxyPassReverse "/app" "https://app.example.com"
</highlight>
</example>
<example><title>HTTP/2 (cleartext)</title>
<highlight language="config">
ProxyPass "/app" "h2c://app.example.com"
-ProxyPassReverse "/app" "h2c://app.example.com"
+ProxyPassReverse "/app" "http://app.example.com"
</highlight>
</example>
+
+ <note>
+ <p>The schemes to configure above in
+ <directive>ProxyPassReverse</directive> for reverse proxying
+ <code>h2</code> (or <code>h2c</code>) protocols are the usual
+ <code>https</code> (resp. <code>http</code>) as expected/used by
+ the user agent.</p>
+ </note>
</section> <!-- /examples -->
<section id="notes"><title>Request notes</title>