]> git.decadent.org.uk Git - memories.git/blobdiff - Memories/Config.pm
Merge commit 'Memories as 1.3'
[memories.git] / Memories / Config.pm
index b2ac02f4a7270922e6c61b496d9e4bcf4023a844..9796ab0971da169b73683c9ce3304cb3d9eb0f8b 100644 (file)
@@ -3,19 +3,19 @@ package Memories::Config;
 
 # This parameter should be the external address of your Memories
 # installation
-Memories->config->uri_base("http://memories/");
+Memories->config->uri_base("http://memories.simon-cozens.org/");
 
 # This is where your templates will live.
-Memories->config->{template_root} = "/etc/memories/templates";
+Memories->config->{template_root} = "/home/simon/maypole-sites/memories/templates";
 
 # Here is where uploaded photos will be stored. Your web server user
 # should own this directory.
-Memories->config->{data_store} = "/srv/www/memories/store/";
+Memories->config->{data_store} = "/web/photostore/";
 
 # 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/store/";
+Memories->config->{data_store_external} = "http://memories.simon-cozens.org/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
@@ -38,6 +38,9 @@ Memories->config->{auth}{session_args} = {
         LockDirectory => "/var/lib/memories/sessionlock",
     };
 
+# This is where your Image::Seek library will be stored.
+Memories->config->{image_seek} = "/var/lib/memories/imageseek.db";
+
 # DISPLAY PARAMETERS
 #
 # It's OK to leave these as they are.