summaryrefslogtreecommitdiff
path: root/index.fpl
blob: 7d6e52cf9063a17961ca68f7972523d5561c0ae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

use Xerl;
use FCGI;

while (FCGI::accept >= 0) {
	my Xerl $xerl = Xerl->new( config => 'config.txt' );
	$xerl->run();
}