4

我需要将以下 nginx 规则转换为 Apache 配置。谁能帮我。

location /chat {
   rewrite            /chat(/.+)$ $1 break;
   proxy_pass         http://localhost:8000;
   proxy_set_header   Host $host;
   proxy_set_header   Cookie $http_cookie;
   proxy_buffering    off;
   proxy_send_timeout 310;
}
4

1 回答 1

2

查看mod_proxy 文档,我认为该ProxyPassMatch指令很有趣。

于 2010-11-25T02:13:35.073 回答