From 6a6593805d71f6cab99f9aa1de64ddb43fd57e09 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 14 Dec 2018 17:09:56 +0200 Subject: default config is xerl.con --- index.cgi | 2 +- index.fcgi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.cgi b/index.cgi index 8441c3e..80db523 100755 --- a/index.cgi +++ b/index.cgi @@ -22,7 +22,7 @@ my $host = hostname(); my $config = -e "xerldev.conf" ? "xerldev.conf" - : ( -e "xerl-$host.conf" ? "xerl-$host.conf" : 'config.conf' ); + : ( -e "xerl-$host.conf" ? "xerl-$host.conf" : 'xerl.conf' ); my $xerl = Xerl->new( config => $config ); $xerl->run(); diff --git a/index.fcgi b/index.fcgi index d21ae1c..1f44938 100755 --- a/index.fcgi +++ b/index.fcgi @@ -23,7 +23,7 @@ my $host = hostname(); my $config = -e "xerldev.conf" ? "xerldev.conf" - : ( -e "xerl-$host.conf" ? "xerl-$host.conf" : 'config.conf' ); + : ( -e "xerl-$host.conf" ? "xerl-$host.conf" : 'xerl.conf' ); while ( FCGI::accept >= 0 ) { my $xerl = Xerl->new( config => $config ); -- cgit v1.2.3