Como haproxy reescrever o cabeçalho http

Como haproxy reescrever o cabeçalho http

Eu tenho 1 hospedagem de servidor haproxy para website.com e 1 hospedagem de servidor nginx para static.website.com . Quero que quando o haproxy receba solicitação http parahttp://website.com/static/image.jpgele irá reescrever:

Host = website.com ==> Host=static.website.com

URI = /static/image.jpg ==> URI=/image.jpg

Em seguida, o haproxy encaminha a solicitação http para o servidor nginx, aqui

backend bk_nginx
  mode http
  # http-request replace-header if Host=website.com and URI=/static/image.jpg ==> rewrite them to Host=static.website.com and URI=/image.jpg
  server node1 nginx-server:83 # forward http request to nginx server port 83 with Host=static.website.com and URI=/image.jpg

Muito obrigado pela sua ajuda.

informação relacionada