From: Matthijs Kooijman Date: Wed, 10 Mar 2010 19:59:06 +0000 (+0100) Subject: lighttpd: Tell blosxom where the log files live. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;ds=sidebyside;h=88cba54a92d38fbc47d36326f988fcaa8046830e;p=matthijs%2Fservers%2Fdrsnuggles.git lighttpd: Tell blosxom where the log files live. This allows blosxom to keep its own error log. --- diff --git a/etc/lighttpd/vhosts/ninniach-nl b/etc/lighttpd/vhosts/ninniach-nl index bc23020..9968c5b 100644 --- a/etc/lighttpd/vhosts/ninniach-nl +++ b/etc/lighttpd/vhosts/ninniach-nl @@ -21,6 +21,7 @@ $HTTP["host"] =~ ".ninniach.nl$" { "BLOSXOM_CONFIG_FILE" => var.site-dir + "/conf/blosxom.conf", "BLOSXOM_DATA_BASE" => var.site-dir + "/data/blosxom", "BLOSXOM_CODE_BASE" => var.site-dir + "/applications/blosxom", + "BLOSXOM_LOGS_BASE" => var.site-dir + "/logs", "BLOSXOM_HTDOCS_URL" => "", ) } diff --git a/etc/lighttpd/vhosts/stderr-nl b/etc/lighttpd/vhosts/stderr-nl index f1a4ad9..2d165b3 100644 --- a/etc/lighttpd/vhosts/stderr-nl +++ b/etc/lighttpd/vhosts/stderr-nl @@ -67,6 +67,7 @@ $HTTP["host"] =~ ".stderr.nl$" { "BLOSXOM_CONFIG_FILE" => var.site-dir + "/conf/blosxom.conf", "BLOSXOM_DATA_BASE" => var.site-dir + "/data/blosxom", "BLOSXOM_CODE_BASE" => var.site-dir + "/applications/blosxom", + "BLOSXOM_LOGS_BASE" => var.site-dir + "/logs", "BLOSXOM_HTDOCS_URL" => "/static/", ) }