lemonldap-ng/lemonldap-ng-portal/site/htdocs/index.fcgi

9 lines
191 B
Plaintext
Raw Normal View History

#!/usr/bin/perl
2013-10-21 23:24:03 +02:00
2016-04-01 12:46:12 +02:00
use Plack::Handler::FCGI;
use Lemonldap::NG::Portal::Main;
2013-10-21 23:24:03 +02:00
2016-04-01 12:46:12 +02:00
# Roll your own
my $server = Plack::Handler::FCGI->new();
$server->run( Lemonldap::NG::Portal::Main->run( {} ) );