summaryrefslogtreecommitdiff
path: root/index.fpl
diff options
context:
space:
mode:
Diffstat (limited to 'index.fpl')
-rwxr-xr-xindex.fpl30
1 files changed, 0 insertions, 30 deletions
diff --git a/index.fpl b/index.fpl
deleted file mode 100755
index 8ae6699..0000000
--- a/index.fpl
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/perl
-
-# Xerl (c) 2005-2011, 2013-2015 by Paul Buetow
-#
-# E-Mail: xerl@dev.buetow.org WWW: https://xerl.buetow.org
-#
-# This is free software, you may use it and distribute it under the same
-# terms as Perl itself.
-
-use strict;
-use warnings;
-
-use v5.14.0;
-
-use Xerl;
-
-use FCGI;
-use Socket;
-use Sys::Hostname;
-
-my $host = hostname();
-my $config =
- -e "xerldev.conf"
- ? "xerldev.conf"
- : ( -e "xerl-$host.conf" ? "xerl-$host.conf" : 'config.conf' );
-
-while ( FCGI::accept >= 0 ) {
- my $xerl = Xerl->new( config => $config );
- $xerl->run();
-}