Perl x Open Food Facts Hackathon: Paris, France - May 24-25 Learn more

NAME

Plack::Middleware::DirIndex - Middleware to use with Plack::App::Directory and the like

SYNOPSIS

my $app = Plack::App::File->new({ root => './htdocs/' })->to_app;
builder {
enable "Plack::Middleware::DirIndex", dir_index => 'index.html';
$app;
}

DESCRIPTION

If $env->{PATH_INFO} ends with a '/' then we will append the dir_index value to it (defaults to index.html)

COPYRIGHT & LICENSE

Copyright (c) 2012 Leo Lapworth. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.