HAProxy version 2.6 (as used in Vyos nightly) only allows HTTP/1.1 by default.
To enable HTTP/2 on a frontend/service, the "bind" parameter in haproxy.cfg must have additional options added to the end of the line.
The alpn option is a comma-delimited list of protocol names, for instance: "http/1.1,http/1.0" (without quotes).
To allow both HTTP/2 or HTTP/1.1 to be used, the haproxy.cfg file generated vyos would need the following change:
frontend LAN_443 - bind 192.168.1.1:443 ssl crt /run/haproxy/proxy_cert.pem + bind 192.168.1.1:443 ssl crt /run/haproxy/proxy_cert.pem alpn h2,http/1.1
This could be gated behind an optional Vyos configuration setting, however I believe this should instead just be enabled by default.
In newer HAProxy versions (as of version 2.8), the default alpn value (if none is specified on the bind configuration line) changes to "h2,http/1.1" for a regular HTTPS frontend, and "h3" for a QUIC frontend.