gyorgyf@0: #global server config gyorgyf@0: [global] gyorgyf@0: gyorgyf@0: # kakapo<->golden gyorgyf@0: server.socket_host = "192.168.122.144" gyorgyf@1: server.socket_port = 8030 gyorgyf@27: server.thread_pool = 50 gyorgyf@0: server.show_tracebacks = False gyorgyf@0: gyorgyf@0: engine.autoreload_on = False #should be off gyorgyf@0: engine.autoreload_frequency = 180 #sec gyorgyf@0: gyorgyf@27: tools.sessions.on = False gyorgyf@0: tools.sessions.timeout = 600 #min gyorgyf@0: tools.sessions.clean_freq = 120 #min gyorgyf@0: gyorgyf@0: # expose everything in static, but note that sessions are enabled in this scope gyorgyf@0: tools.staticdir.on = True gyorgyf@0: tools.staticdir.dir = 'static' gyorgyf@0: gyorgyf@27: log.screen = None gyorgyf@27: # log.access_file = 'mood-access.log' gyorgyf@27: log.error_file = "mcserver.log" gyorgyf@0: gyorgyf@0: #main app config gyorgyf@0: [/] gyorgyf@0: response.timeout = 600 #sec gyorgyf@0: request.show_tracebacks = False gyorgyf@27: tools.proxy.on = True gyorgyf@0: # tools.staticdir.root = 'mcserver' gyorgyf@0: tools.staticdir.on = True gyorgyf@0: tools.staticdir.dir = 'static' gyorgyf@0: gyorgyf@0: # explicit configuration of static content with sessions disabled gyorgyf@0: [/script] gyorgyf@0: tools.sessions.on = False gyorgyf@27: gyorgyf@27: [/static] gyorgyf@27: tools.sessions.on = False