2 # wrfeed - Pylons configuration
4 # The %(here)s variable will be replaced with the parent directory of this file
8 email_to = you@yourdomain.com
9 smtp_server = localhost
10 error_email_from = paste@localhost
22 cache_dir = %(here)s/data
23 beaker.session.key = wrfeed
24 beaker.session.secret = ${app_instance_secret}
25 app_instance_uuid = ${app_instance_uuid}
27 # If you'd like to fine-tune the individual locations of the cache data dirs
28 # for the Cache data, or the Session saves, un-comment the desired settings
30 #beaker.cache.data_dir = %(here)s/data/cache
31 #beaker.session.data_dir = %(here)s/data/sessions
33 # SQLAlchemy database URL
34 sqlalchemy.url = mysql://user@localhost:3306/winterrodeln_wiki?charset=utf8&use_unicode=1
35 # sqlalchemy.url = sqlite:///production.db
37 # necessary for mySQL databases
38 sqlalchemy.pool_recycle = 3600
40 # maximum number of feed entries
43 # WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
44 # Debug mode will enable the interactive debugging tool, allowing ANYONE to
45 # execute malicious code after an exception is raised.
49 # Logging configuration
70 format = %(asctime)s %(levelname)-5.5s [%(name)s] [%(threadName)s] %(message)s