HTTP2/HTTP1.1 to one backend

You can try a solution with 2 backends, one for HTTP1/1 and one for HTTP/2 and in the frontend you can take a routing decision, such as:

use_backend bhttp2 if { req.ver 2.0 }
1 Like