use lib '/data/WebGUI/lib'; use WebGUI; my $wg1 = WebGUI->new; my $wg2 = WebGUI->new; use Plack::Builder; my $app = builder { mount "http://dev.localhost.localdomain:5000/" => $wg1; mount "/wg1" => $wg1; mount "/wg2" => $wg2; mount "/" => sub { [ 200, [ 'Content-Type' => 'text/html' ], [ <WebGUI + URLMap

END_HTML };