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
28 wikidbserver = localhost
29 wikidbname = winterrodeln_wiki
33 authkit.setup.method = basic
34 authkit.basic.realm = Winterrodeln Admin
35 authkit.basic.authenticate.user.type = wradmin.lib.mediawiki:MediaWikiUsers
36 authkit.basic.authenticate.user.data =
38 # If you'd like to fine-tune the individual locations of the cache data dirs
39 # for the Cache data, or the Session saves, un-comment the desired settings
41 #beaker.cache.data_dir = %(here)s/data/cache
42 #beaker.session.data_dir = %(here)s/data/sessions
44 # SQLAlchemy database URL
45 sqlalchemy.url = mysql://philipp@localhost:3306/winterrodeln_wiki?charset=utf8
46 # necessary for mySQL databases
47 sqlalchemy.pool_recycle = 3600
48 # sqlalchemy.echo_pool = 1
49 # sqlalchemy.echo=true
51 # WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
52 # Debug mode will enable the interactive debugging tool, allowing ANYONE to
53 # execute malicious code after an exception is raised.
57 # Logging configuration
59 keys = root, routes, wradmin
75 qualname = routes.middleware
76 # "level = DEBUG" logs the route matched and routing variables.
91 args = ('/tmp/pylons_application.log', 'a')
96 format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s