summaryrefslogtreecommitdiff
path: root/index.fpl
diff options
context:
space:
mode:
Diffstat (limited to 'index.fpl')
-rwxr-xr-xindex.fpl4
1 files changed, 3 insertions, 1 deletions
diff --git a/index.fpl b/index.fpl
index a7d41b4..3ac017c 100755
--- a/index.fpl
+++ b/index.fpl
@@ -10,7 +10,9 @@ use Socket;
use Sys::Hostname;
my $host = hostname();
-my $config = -e "config-$host.txt" ? "config-$host.txt" : 'config.txt';
+my $config = -e "xerldev-$host.conf" ? "xerldev-$host.conf" : (
+ -e "xerl-$host.conf" ? "xerl-$host.conf" : 'config.conf'
+);
while (FCGI::accept >= 0) {
my Xerl $xerl = Xerl->new( config => $config );