Files
uwsgi/test.psgi
T
2010-04-13 08:39:49 +02:00

13 lines
213 B
Perl

use strict;
use warnings;
my $app = sub {
my $env = shift;
return [
'200',
[ 'Content-Type' => 'text/plain' ],
[ "Hello World\r\n", $env->{'REQUEST_URI'} ],
];
};