Skip to content

Instantly share code, notes, and snippets.

@sng2c
Last active December 27, 2015 15:28
Show Gist options
  • Save sng2c/7347545 to your computer and use it in GitHub Desktop.
Save sng2c/7347545 to your computer and use it in GitHub Desktop.
perl proxy server
#!/usr/bin/env perl
use HTTP::Proxy;
my $proxy = HTTP::Proxy->new(
host => '',
port => 8080,
maxchild=>10,
);
$proxy->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment