]> git.xonotic.org Git - xonotic/xonstat.git/blobdiff - development.ini
Remove more refs to sqlahelper.
[xonotic/xonstat.git] / development.ini
index c3d1cf83f50a443f9ffc25209d2c372f447d1b2f..607970671dc8fd50e6dd8019425ce8a300599203 100755 (executable)
@@ -6,15 +6,20 @@ debug_notfound = false
 debug_routematch = false
 debug_templates = true
 default_locale_name = en
-sqlalchemy.url = postgresql+psycopg2://xonstat:xonstat@localhost:5433/xonstatdb
+sqlalchemy.url = postgresql+psycopg2://xonstat:xonstat@localhost:5432/xonstatdb
 session.type = file
 session.data_dir = %(here)s/data/sessions/data
 session.lock_dir = %(here)s/data/sessions/lock
 session.key = xonstat
 session.secret = CHANGEMECHANGEMECHANGEME
-jinja2.directories = xonstat:templates
 mako.directories = xonstat:templates
 
+# Beaker cache settings
+# Default is to use one region with hourly cache invalidation
+cache.regions = hourly_term
+cache.type = memory
+cache.hourly_term.expire = 3600
+
 ##### XONSTAT CONFIG SETTINGS #####
 
 # how many "real" players are required before the data
@@ -23,7 +28,13 @@ xonstat.minimum_required_players = 1
 
 # how far back to reach for calculating leaderboard rank
 # e.g. set to 7 and only the current week's data is used
-xonstat.leaderboard_lifetime = 30
+xonstat.leaderboard_lifetime = 365
+
+# should the server verify requests using the d0_blind_id library?
+# if so, edit the d0_blind_id.py file with the correct location of
+# the crypto-keygen-standalone binary from the xonotic installation
+# Note: the default is true
+xonstat.verify_requests = false
 
 ##### END XONSTAT CONFIG SETTINGS #####
 
@@ -38,7 +49,7 @@ use = egg:repoze.tm2#tm
 commit_veto = repoze.tm:default_commit_veto
 
 [server:main]
-use = egg:Paste#http
+use = egg:waitress#main
 host = 0.0.0.0
 port = 6543