in reply to Configuring Starman a la Apache

Given $app is your PSGI app:
use Plack::Builder; builder { enable "Static", path => sub { s!^/lib/!! }, root => "/path/to/lib +/"; $app; };
See perldoc Plack::Builder and Plack::Middleware::Static for more details.