- or download this
fragment of action.psgi
...
mount "/" => $htdocs;
};
- or download this
use Plack::Builder;
use Plack::App::File;
...
}
};
- or download this
mount "/" => builder {
...
enable 'Session' store => 'File';
$action;
}
- or download this
don't do this; wrong
...
$action;
}