Files
uwsgi/test.psgi
T
2010-06-14 16:59:50 +02:00

12 lines
212 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'} ],
];
};