0

我将starman 用于我的网络应用程序。Apache Web 服务器侦听端口 8080。我想在 Starman 中重写一些请求,例如'/request'对这个 Apache Web 服务器的请求。我试图找到一些下午,但我找到了一些帮助我的例子。

4

1 回答 1

1

Plack::App::Proxy允许您代理到 app.psgi 中的另一个 Web 服务器。改编自大纲:

use Plack::Builder;

# proxy all requests for /request to 127.0.0.1:8080
builder {
    mount "/request" => Plack::App::Proxy->new(remote => "http://127.0.0.1:8080")->to_app;
};
于 2012-09-03T05:51:21.380 回答