Cool now the following h2 proxy configuration of httpd (trunk) works:
+++
<VirtualHost *:8006>

   Protocols h2 http/1.1
   ProtocolsHonorOrder on
   SSLEngine on
   ....

   ProxyPass "/" "h2c://localhost:8003/"

</VirtualHost>
+++

and h2load http://localhost:8003/ works too.

On 8003 I have the tomcat running configured as:
+++
    <Connector
        port="8003"
        protocol="org.apache.coyote.http11.Http11AprProtocol">
        <UpgradeProtocol
className="org.apache.coyote.http2.Http2Protocol" />
    </Connector>
+++
thanks

Jean-Frederic

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to