smtp_server = localhost
error_email_from = philipp.spitzer@winterrodeln.org
-wikidbtype = mysql
-wikidbserver = localhost
-wikidbname = winterrodeln_wiki
-wikidbuser = philipp
-wikidbpassword =
-
[server:main]
use = egg:Paste#http
host = 127.0.0.1
beaker.session.key = wradmin
beaker.session.secret = somesecret
+authkit.setup.method = basic
+authkit.basic.realm = Winterrodeln Admin
+authkit.basic.authenticate.user.type = wradmin.lib.mediawiki:MediaWikiUsers
+authkit.basic.authenticate.user.data =
+
# If you'd like to fine-tune the individual locations of the cache data dirs
# for the Cache data, or the Session saves, un-comment the desired settings
# here:
#beaker.cache.data_dir = %(here)s/data/cache
#beaker.session.data_dir = %(here)s/data/sessions
+# SQLAlchemy database URL
+sqlalchemy.url = mysql://philipp@localhost:3306/winterrodeln_wiki?charset=utf8
+# necessary for mySQL databases
+sqlalchemy.pool_recycle = 3600
+# sqlalchemy.echo_pool = 1
+# sqlalchemy.echo=true
+
# 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.
keys = root, routes, wradmin
[handlers]
-keys = console
+keys = console, file
[formatters]
keys = generic
[logger_root]
level = INFO
+# handlers = file
handlers = console
[logger_routes]
level = NOTSET
formatter = generic
+[handler_file]
+class = FileHandler
+args = ('/tmp/pylons_application.log', 'a')
+level = INFO
+formatter = generic
+
[formatter_generic]
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
datefmt = %H:%M:%S