我安装了 haproxy 1.4,我需要在 haproxy.conf 中配置一个反向代理,将 URL 从 重写www.somedomain.com
为www.otherdomain.com/bla/ble
。我正在编写的配置在这里:
acl cpol_acl hdr_dom(host) -i www.somedomain.com
use_backend cpol_srv if cpol_acl
backend cpol_srv
balance leastconn
mode http
option httplog
stick on src
stick-table type ip size 10240k expire 60m
reqirep ^([^\ :]*)\ /(.*) \1\ /bla/ble\2
reqirep ^Host:\ www.somedomain.com Host:\ www.otherdomain.com
server cpol_srv www.otherdomain.com check port 80
这是可行的,但浏览器中的 URL 会重写www.otherdomain.com/bla/ble
,这不是我想要的。如果我删除线
reqirep ^([^\ :]*)\ /(.*) \1\ /bla/ble\2
我只能转发到主机www.otherdomain.com
,但浏览器中的 URL 保留为www.somedomain.com
.
有没有办法在不重写浏览器 URL 的情况下进行这种类型的反向代理?
PS:我会做这种 Apache 风格(可行),但机器没有任何 NAT 到外面的世界,只能与 haproxy 通信。