It appears that CGI::PSGI does not implement the script_name() method from CGI or returns a blank string. How do I get the script URI from a HTTP request under a PSGI environment? Specifically plackup using Starman?
|
feedback
|
|
feedback
|
use CGI qw(); my $c = CGI->new; print $c->header; print $c->script_name;•starman -MPlack::App::CGIBin -e 'Plack::App::CGIBin->new(root => ".")->to_app'•curl -v 'http://localhost:5000/foo.pl?1=2;3=4#fnord'– daxim Jan 10 at 8:27