### This file is /var/www/plack-example/app.psgi use Data::Dumper; my $app = sub { my $env = shift; my $headers = ['Content-Type' => 'text/plain']; my $body = [Dumper($env)]; return [200, $headers, $body]; };