NAME

Plack::Middleware::DirIndex

SYNOPSIS

use Plack::Builder;
use Plack::App::File;
use Plack::Middleware::DirIndex;

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)