I have a setup that looks something like this: frontend lb ... default_backend www
backend www ... server web1 server web2 server web3 Externally, users can only hit our sites at www.example.com or someapp.example.com, but internally for testing, monitoring, and configuration purposes, we want to be able to hit the backend servers individually (i.e. web[1-3].www.example.com, web[1-3].someapp.example.com). I could make 3 separate backends to handle each of these and use a use_backend acl to pick based on the Host header, but that seems like overkill and would be the only purpose those backends serve. Is there a way to balance to a _specific_ server based on the Host header (no cookies)? I know you can use a balance hdr, but that is doing a hash of the header to pick the server. I need to explicitly configure `Host: webX.___.example.com' to go to the backend server webX. Is that doable somehow, or do I have to go the separate backend route? Thanks, all! - Jim

