aboutsummaryrefslogtreecommitdiffstats
path: root/server.pl
diff options
context:
space:
mode:
Diffstat (limited to 'server.pl')
-rwxr-xr-xserver.pl28
1 files changed, 0 insertions, 28 deletions
diff --git a/server.pl b/server.pl
deleted file mode 100755
index 74e7c09..0000000
--- a/server.pl
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/perl -CADS
-
-use strict;
-use warnings;
-use utf8;
-
-use MyServer;
-use lib 'lib';
-use Fripost::Panel::Interface;
-
-my $server = MyServer->new();
-
-$server->entry_points({
- '/cgi-bin' => 'Fripost::Panel::Interface'
-});
-
-my @config = 'default.in';
-push @config, 'config.in' if -f 'config.in';
-
-# TODO: This is only for testing purposes. Using a blessed target above
-# prevents me from logging in.
-$server->options({
- '/cgi-bin' => {
- PARAMS => { cfg_file => [ @config ], format => 'equal' }
- }
-});
-
-$server->run();