I am able to configure HAProxy to to present itself as an HTTP/3 server by following instruction here: https://www.haproxy.com/blog/announcing-haproxy-2-6/
bind :443 ssl crt server.pem alpn h2,http/1.1
http-response set-header alt-svc "h3=\":443\";ma=900;"
But what do I need to put in haproxy.cfg to to indicate to HAProxy that the backend server supports HTTP/3 and it should use QUIC protocol to connect to it? I tried the same quic4@
prefix but it didn't seem to do anything.
server s1 quic4@192.168.4.4:443