# Test webserver plackup -e 'sub{[200,[],[Data::Dumper::Dumper@_]]}' # Fileserver plackup -MPlack::App::Directory -e 'Plack::App::Directory->new' # HTTP proxy (Starlight is the most stable server) starlight -MPlack::App::Proxy -e 'enable q{AccessLog};enable q{Proxy::Connect};enable q{Proxy::Requests};Plack::App::Proxy->new->to_app' # Serving cgi-bin scripts plackup -MPlack::App::CGIBin -e 'Plack::App::CGIBin->new(root=>".",exec_cb=>sub{1})->to_app'