From: Ben Hutchings Date: Sat, 31 Dec 2005 02:46:24 +0000 (+0000) Subject: Changed default paths to be more generic and more suitable for a Debian system. X-Git-Tag: 1.1-1~11 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=memories.git;a=commitdiff_plain;h=2c6ad3d05f9c6c6cfdc50feb61c55cd7765f9ad4 Changed default paths to be more generic and more suitable for a Debian system. --- diff --git a/Memories/Config.pm b/Memories/Config.pm index f874eff..b2ac02f 100644 --- a/Memories/Config.pm +++ b/Memories/Config.pm @@ -3,19 +3,19 @@ package Memories::Config; # This parameter should be the external address of your Memories # installation -Memories->config->uri_base("http://memories.simon-cozens.org/"); +Memories->config->uri_base("http://memories/"); # This is where your templates will live. -Memories->config->{template_root} = "/home/simon/maypole-sites/memories/templates"; +Memories->config->{template_root} = "/etc/memories/templates"; # Here is where uploaded photos will be stored. Your web server user # should own this directory. -Memories->config->{data_store} = "/web/photostore/"; +Memories->config->{data_store} = "/srv/www/memories/store/"; # You also need to configure your web server so that it serves files out # of the data store; this URL should be where that data store directory # is exposed on the web. -Memories->config->{data_store_external} = "http://memories.simon-cozens.org/store/"; +Memories->config->{data_store_external} = "http://memories/store/"; # Your database server: the first part should always be "dbi"; the # second, the name of the DBD driver you're using (usually mysql unless