2 # wradmin - Pylons development environment configuration
4 # The %(here)s variable will be replaced with the parent directory of this file
8 # address which should receive any error reports
9 email_to = philipp.spitzer@winterrodeln.org
10 smtp_server = localhost
11 error_email_from = philipp.spitzer@winterrodeln.org
23 cache_dir = %(here)s/data
24 beaker.session.key = wradmin
25 beaker.session.secret = somesecret
27 authkit.setup.method = basic
28 authkit.basic.realm = Winterrodeln Admin
29 authkit.basic.authenticate.user.type = wradmin.lib.mediawiki:MediaWikiUsers
30 authkit.basic.authenticate.user.data =
32 # If you'd like to fine-tune the individual locations of the cache data dirs
33 # for the Cache data, or the Session saves, un-comment the desired settings
35 #beaker.cache.data_dir = %(here)s/data/cache
36 #beaker.session.data_dir = %(here)s/data/sessions
38 # SQLAlchemy database URL
39 sqlalchemy.url = mysql://philipp@localhost:3306/winterrodeln_wiki?charset=utf8&use_unicode=0
40 # If use_unicode=1, sqlalchemy requests unicode strings from the MySQLdb backend (and does not do the conversion itself), however, since the tables are defined as 'varchar(x) binary' only binary string are returned and not converted to unicode.
41 # necessary for mySQL databases
42 sqlalchemy.pool_recycle = 3600
43 # sqlalchemy.echo_pool = 1
44 # sqlalchemy.echo=true
46 # WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
47 # Debug mode will enable the interactive debugging tool, allowing ANYONE to
48 # execute malicious code after an exception is raised.
52 # Logging configuration
54 keys = root, routes, wradmin
70 qualname = routes.middleware
71 # "level = DEBUG" logs the route matched and routing variables.
86 args = ('/tmp/pylons_application.log', 'a')
91 format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s