Help for this page
### This file is /var/www/plack-example/.htaccess ### Note the dot in the filename! SetHandler perl-script PerlResponseHandler Plack::Handler::Apache2 PerlSetVar psgi_app /var/www/plack-example/app.psgi
### This file is /var/www/plack-example/app.psgi use Data::Dumper; ... return [200, $headers, $body]; };