Hello, I do a quick playing around with H2 proxy with Chome, Chrome has built-in HTTPS proxy support. If I conf like:
listen FE mode http bind 0.0.0.0:1443 ssl crt cert.pem alpn h2,http/1.1 server squid-fwd-proxy 127.0.0.1:3128 then I set Chrome to use this proxy, it works fine with the https webpages, but not http pages, Chrome shows squid 407 page, which is http://127.0.0.1:3128 Change mode http to tcp, Chrome returns ERR_SPDY_PROTOCOL_ERROR. Continuously remove h2 from conf, Chrome works fine for both http and https finally. Is this expected in haproxy, or it should be Chrome's own issue? Thanks.

