I'm trying to figure out the best way to handle dynamic proxying of HTTP requests.
Basically I want to take a dynamic hostname in the form of myname.cust.mydomain.example
and then forward requests to an HTTP backend server with the name "myname" taken from the hostname.
I've been racking my brain trying to figure out the best way to handle this and if HAProxy is even up to the task.
Another option I was thinking was something like Lighttpd with LUA or even Nginx.
The easiest solution would be just use DNS to map
foo.cust.mydomain.example
to a specific server IP, as womble suggested. This would skip the entire proxy server. Perhaps this is not possible for you, for example if you do not have public IP addresses for the backend servers.Directing all requests to one server (with a wildcard DNS) and then forwarding the requests dynamically according to the Host header is a bit more complicated, and it seems HAProxy cannot do this, because every backend server must be explicitly defined in HAProxy configuration.
Nginx, though, is different, with right configuration Nginx can use Host header to choose the backend. Nginx needs a DNS server that maps names to backend addresses, of course.
Here is a small example of the configuration:
This redirects
http://myserver.cust.mydomain.example/foo/
tohttp://myserver.cust.mydomain.example/foo/
. Does not seem very helpful at first sight. But if you set up a private DNS server that maps those names to a backend server addresses, the request actually gets forwarded to a correct backend server on a private address.But, this kind of DNS server setting might not be desired, and could cause problems in some cases. So, with some additions to the Nginx config, we can take another approach:
Now redirect goes from
http://myserver.cust.mydomain.example/foo/
tohttp://myserver.private.mydomain.example/foo/
. The DNS server can hold private addresses under different domain, andproxy_pass
directive can be modified to match the desired name server configuration.I still think this kind of proxying might not be the easiest way to solve the whole picture, but it's one possibility after all. I'm happy if this was of any help.
References: Nginx Wiki, especially HttpProxyModule and HttpRewriteModule