DOKK / manpages / debian 12 / libplack-app-proxy-perl / Plack::Middleware::Proxy::Connect.3pm.en
Plack::Middleware::Proxy::Connect(3pm) User Contributed Perl Documentation Plack::Middleware::Proxy::Connect(3pm)

Plack::Middleware::Proxy::Connect - Handles the CONNECT method.

  use Plack::Builder;
  use Plack::App::Proxy;
  builder {
      enable "Proxy::Connect";
      enable sub {
          my $app = shift;
          return sub {
              my $env = shift;
              ($env->{'plack.proxy.url'} = $env->{REQUEST_URI}) =~ s|^/||;
              $app->( $env );
          };
      };
      Plack::App::Proxy->new->to_app;
  };

Plack::Middleware::Proxy::Connect handles the "CONNECT" method, like mod_proxy's "AllowCONNECT" option.

Plack::Middleware::Proxy::Connect runs on servers supporting psgix.io; Twiggy, Plack::Server::Coro, and so on.

Masahiro Honma <hiratara@cpan.org>

Plack::App::Proxy

2021-01-09 perl v5.32.0