Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dex4er/perl-plack-middleware-proxy-requests
Forward proxy server
https://github.com/dex4er/perl-plack-middleware-proxy-requests
Last synced: 10 days ago
JSON representation
Forward proxy server
- Host: GitHub
- URL: https://github.com/dex4er/perl-plack-middleware-proxy-requests
- Owner: dex4er
- Created: 2012-08-14T00:39:14.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-06-18T10:01:21.000Z (over 1 year ago)
- Last Synced: 2024-10-28T09:01:50.754Z (about 2 months ago)
- Language: Perl
- Size: 47.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
NAME
Plack::Middleware::Proxy::Requests - Forward proxy server
SYNOPSIS
# In app.psgi
use Plack::Builder;
use Plack::App::Proxy;
builder {
enable "Proxy::Connect";
enable "Proxy::AddVia";
enable "Proxy::Requests";
Plack::App::Proxy->new->to_app;
};
# From shell
plackup -s Twiggy -E Proxy -e 'enable q{AccessLog}' app.psgi
# or
twiggy -MPlack::App::Proxy \
-e 'enable q{AccessLog}; enable q{Proxy::Connect}; \
enable q{Proxy::AddVia}; enable q{Proxy::Requests}; \
Plack::App::Proxy->new->to_app'DESCRIPTION
This module handles HTTP requests as a forward proxy server.
Its job is to set a plack.proxy.url environment variable based on
REQUEST_URI variable.The HTTP responses from the Internet might be invalid. In that case it
is required to run the server without Plack::Middleware::Lint module.
This module is started by default and disabled if -E or
--no-default-middleware option is used when starting plackup script.
Note that this disables also Plack::Middleware::AccessLog so it has to
be enabled explicitly if needed.The default server Plack::Server::PSGI alias Standalone can hang up on
the stalled connection. It is better to run a proxy server with
Starlet, Starman or Twiggy.SEE ALSO
Plack, Plack::App::Proxy, Plack::Middleware::Proxy::Connect,
Plack::Middleware::Proxy::AddVia, Starlet, Starman, Twiggy.BUGS
If you find the bug or want to implement new features, please report it
at
https://github.com/dex4er/perl-Plack-Middleware-Proxy-Requests/issuesThe code repository is available at
http://github.com/dex4er/perl-Plack-Middleware-Proxy-RequestsAUTHOR
Piotr Roszatycki
LICENSE
Copyright (c) 2012-2013, 2023 Piotr Roszatycki .
This is free software; you can redistribute it and/or modify it under
the same terms as perl itself.See http://dev.perl.org/licenses/artistic.html