Added some missing details to the configuration template file.

This commit is contained in:
Raoul Snyman 2010-04-12 08:01:11 +02:00
parent ca205d287f
commit 2b07af6773
1 changed files with 20 additions and 0 deletions

View File

@ -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.