From 2b07af67730761b85a2576ff283fe697fb589c2c Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Mon, 12 Apr 2010 08:01:11 +0200 Subject: [PATCH] Added some missing details to the configuration template file. --- scribeengine/config/deployment.ini_tmpl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/scribeengine/config/deployment.ini_tmpl b/scribeengine/config/deployment.ini_tmpl index 5f8c2aa..bbb4277 100644 --- a/scribeengine/config/deployment.ini_tmpl +++ b/scribeengine/config/deployment.ini_tmpl @@ -22,6 +22,7 @@ static_files = true cache_dir = %(here)s/data beaker.session.key = scribeengine beaker.session.secret = ${app_instance_secret} +beaker.session.timeout = 1209600 app_instance_uuid = ${app_instance_uuid} # If you'd like to fine-tune the individual locations of the cache data dirs @@ -33,6 +34,25 @@ app_instance_uuid = ${app_instance_uuid} # SQLAlchemy database URL sqlalchemy.url = sqlite:///production.db +# Images directory +paths.images = %(here)s/images +# Themes directory +paths.themes = %(here)s/themes + +# Security settings +security.salt = secretsalt + +# Mail server settings +mail.on = false +mail.manager = immediate +mail.transport = smtp +mail.smtp.server = mail.mydomain.com +mail.smtp.username = mymailusername +mail.smtp.password = mymailpassword + +# Server-related settings +server.timezone = 'Africa/Johannesburg' + # WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* # Debug mode will enable the interactive debugging tool, allowing ANYONE to # execute malicious code after an exception is raised.