3 reload_templates = true
4 debug_authorization = false
6 debug_routematch = false
8 default_locale_name = en
9 sqlalchemy.url = postgresql+psycopg2://xonstat:xonstat@localhost:5432/xonstatdb
11 session.data_dir = %(here)s/data/sessions/data
12 session.lock_dir = %(here)s/data/sessions/lock
14 session.secret = CHANGEMECHANGEMECHANGEME
15 mako.directories = xonstat:templates
17 # Beaker cache settings
18 # Default is to use one region with hourly cache invalidation
19 cache.regions = hourly_term
21 cache.hourly_term.expire = 3600
23 # Mozilla Persona settings
24 persona.secret = This is a secret string. Please change me!
25 persona.audiences = http://localhost:6543
26 persona.siteName = XonStat
28 ##### XONSTAT CONFIG SETTINGS #####
30 # how many "real" players are required before the data
31 # is stored in the database
32 xonstat.minimum_required_players = 1
34 # how far back to reach for calculating leaderboard rank
35 # e.g. set to 7 and only the current week's data is used
36 xonstat.leaderboard_lifetime = 30
38 # should the server verify requests using the d0_blind_id library?
39 # if so, edit the d0_blind_id.py file with the correct location of
40 # the crypto-keygen-standalone binary from the xonotic installation
41 # Note: the default is true
42 xonstat.verify_requests = false
44 ##### END XONSTAT CONFIG SETTINGS #####
48 egg:WebError#evalerror
53 use = egg:repoze.tm2#tm
54 commit_veto = repoze.tm:default_commit_veto
57 use = egg:waitress#main
61 # Begin logging configuration
64 keys = root, xonstat, sqlalchemy
84 qualname = sqlalchemy.engine
85 # "level = INFO" logs SQL queries.
86 # "level = DEBUG" logs SQL queries and results.
87 # "level = WARN" logs neither. (Recommended for production systems.)
96 format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
98 # End logging configuration