Mercurial > hg > mood-conductor
annotate mcserver/mcdevel.cfg @ 54:c0b34039917a tip
Server: added an exposed function to log the start time of a performance (for log-to-audio sync)
author | Mathieu Barthet <mathieu.barthet@eecs.qmul.ac.uk> |
---|---|
date | Wed, 14 Oct 2015 19:20:08 +0100 |
parents | c97feb7ef9e9 |
children |
rev | line source |
---|---|
gyorgyf@0 | 1 #global server config |
gyorgyf@0 | 2 [global] |
gyorgyf@0 | 3 |
gyorgyf@0 | 4 # kakapo<->golden |
gyorgyf@27 | 5 # server.socket_host = "192.168.2.184" |
gyorgyf@27 | 6 server.socket_host = "127.0.0.1" |
gyorgyf@3 | 7 server.socket_port = 8030 |
gyorgyf@27 | 8 server.thread_pool = 50 |
gyorgyf@0 | 9 server.show_tracebacks = False |
gyorgyf@0 | 10 |
gyorgyf@0 | 11 engine.autoreload_on = True #should be off |
gyorgyf@0 | 12 engine.autoreload_frequency = 180 #sec |
gyorgyf@0 | 13 |
gyorgyf@27 | 14 tools.sessions.on = False |
gyorgyf@0 | 15 tools.sessions.timeout = 600 #min |
gyorgyf@0 | 16 tools.sessions.clean_freq = 120 #min |
gyorgyf@0 | 17 |
gyorgyf@0 | 18 # expose everything in static, but note that sessions are enabled in this scope |
gyorgyf@0 | 19 tools.staticdir.on = True |
gyorgyf@0 | 20 tools.staticdir.dir = 'static' |
gyorgyf@0 | 21 |
gyorgyf@27 | 22 log.screen = None |
gyorgyf@27 | 23 # log.access_file = 'mood-access.log' |
gyorgyf@27 | 24 log.error_file = "mcserver.log" |
gyorgyf@0 | 25 |
gyorgyf@0 | 26 #main app config |
gyorgyf@0 | 27 [/] |
gyorgyf@27 | 28 tools.proxy.on = True |
gyorgyf@0 | 29 response.timeout = 600 #sec |
gyorgyf@0 | 30 request.show_tracebacks = False |
gyorgyf@27 | 31 # log.access_file = 'mcserver-access.log' |
gyorgyf@27 | 32 # log.error_file = 'mcserver-error.log' |
gyorgyf@0 | 33 # tools.staticdir.root = 'mcserver' |
gyorgyf@0 | 34 tools.staticdir.on = True |
gyorgyf@0 | 35 tools.staticdir.dir = 'static' |
gyorgyf@0 | 36 |
gyorgyf@27 | 37 # [/mood] |
gyorgyf@27 | 38 # log.access_file = 'mood-access.log' |
gyorgyf@27 | 39 |
gyorgyf@0 | 40 # explicit configuration of static content with sessions disabled |
gyorgyf@0 | 41 [/script] |
gyorgyf@0 | 42 tools.sessions.on = False |