diff --git a/app.psgi b/bin/app.pl similarity index 75% rename from app.psgi rename to bin/app.pl index 6e323af..6e04368 100644 --- a/app.psgi +++ b/bin/app.pl @@ -2,7 +2,8 @@ use strict; use warnings; use FindBin; -use lib "$FindBin::Bin/lib"; +use lib "$FindBin::Bin/../lib"; use App::BlogAlba; + App::BlogAlba->start; diff --git a/config.yml b/config.yml index 7d6efe3..0d02948 100644 --- a/config.yml +++ b/config.yml @@ -3,20 +3,20 @@ charset: "UTF-8" tz: "Europe/London" locale: "en_GB" -logger: "file" +logger: "console" log: "debug" # Uncomment for debugging -show_errors: 1 +#show_errors: 1 #Blog configuration -url: "https://maff.scot/" -name: "colourful words and phrases" -tagline: "techy tangents and general life chatter from a tired sysadmin." -author: "Maff" -about: "A dorky dude who spends too much time with perl." +url: https://maff.scot/ +name: colourful words and phrases +tagline: techy tangents and general life chatter from a tired sysadmin. +author: Maff +about: A dorky dude who spends too much time with perl. keywords: "sysadmin,unix,bsd,freebsd,linux,software,web,developer,perl,bash,shell,gentoo,maff,matthew,connelly,dundee,scotland,furry,blog" -posturlprepend: "wrote/" +posturlprepend: wrote/ conf: indexable: 1 per_page: 6 @@ -25,5 +25,5 @@ conf: rss_excerpt: 1 date_format: "%H:%M on %A, %d/%m/%y" links: - Twitter: "https://twitter.com/maffsie" - Github: "https://github.com/Maffsie" + Twitter: https://twitter.com/maffsie + Github: https://github.com/Maffsie diff --git a/start b/start index d5f1097..eb7b3be 100755 --- a/start +++ b/start @@ -10,4 +10,4 @@ PERL_MM_OPT="INSTALL_BASE=$BASE/perl5"; export PERL_MM_OPT; pkill -F $BASE/${APP}.pid 2>/dev/null while true;do pkill -0 -F $BASE/${APP}.pid 2>/dev/null || break; sleep 1; done cd $BASE/$APP -plackup -s Starman -D -S $BASE/$APP/.sock -a $BASE/$APP/app.psgi --pid $BASE/${APP}.pid $START_OPTS +plackup -s Starman -D -S $BASE/$APP/.sock $BASE/$APP/bin/app.pl --pid $BASE/${APP}.pid $START_OPTS