annotate devel.cfg @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 #global server config
yading@10 2 [global]
yading@10 3
yading@10 4 # kakapo<->golden
yading@10 5 # server.socket_host = "192.168.2.184"
yading@10 6
yading@10 7 server.socket_host = "127.0.0.1"
yading@10 8 server.socket_port = 8080
yading@10 9 server.thread_pool = 30
yading@10 10 server.show_tracebacks = False
yading@10 11
yading@10 12 engine.autoreload_on = True #should be off on the real server
yading@10 13 engine.autoreload_frequency = 10 #sec
yading@10 14
yading@10 15 tools.sessions.on = True
yading@10 16 tools.sessions.timeout = 600 #min
yading@10 17 tools.sessions.clean_freq = 120 #min
yading@10 18
yading@10 19 # expose everything in static, but note that sessions are enabled in this scope
yading@10 20 tools.staticdir.on = True
yading@10 21 tools.staticdir.dir = 'static'
yading@10 22
yading@10 23
yading@10 24 #main app config
yading@10 25 [/]
yading@10 26 response.timeout = 600 #sec
yading@10 27 request.show_tracebacks = False
yading@10 28 log.access_file = 'mcserver-access.log'
yading@10 29 log.error_file = 'mcserver-error.log'
yading@10 30 tools.staticdir.on = True
yading@10 31 tools.staticdir.dir = ''
yading@10 32
yading@10 33 # explicit configuration of static content with sessions disabled
yading@10 34 [/script]
yading@10 35 tools.sessions.on = False