Proxy 主机名的Lighttpd代理

Proxy 主机名的Lighttpd代理,proxy,webserver,subdomain,lighttpd,host,Proxy,Webserver,Subdomain,Lighttpd,Host,我需要服务器端的代理连接,Lighttpd来自https://example.org/xxx/id至http://sub.example.org:1234/xxx/id 我如何使用mod_proxy实现这一点 我需要这样的东西: "/xxx" => ( ( "host" => "sub.example.org", "port" => 1234 ) ) 但是 “主机”:是代理服务器的ip,请不要在此处使用主机名!仅限IP地址

我需要服务器端的代理连接,Lighttpd来自
https://example.org/xxx/id
http://sub.example.org:1234/xxx/id

我如何使用mod_proxy实现这一点

我需要这样的东西:

"/xxx" => (
 ( "host" => "sub.example.org", "port" => 1234 )
)
但是

“主机”:是代理服务器的ip,请不要在此处使用主机名!仅限IP地址