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@0: server.thread_pool = 30 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@0: tools.sessions.on = True gyorgyf@0: tools.sessions.timeout = 600 #min gyorgyf@0: tools.sessions.clean_freq = 120 #min gyorgyf@0: # tools.sessions.storage_type = 'directory' gyorgyf@0: # tools.sessions.SESSIONS_PATH = 'sessions/' gyorgyf@0: # tools.sessions.SESSIONS_PATH = 'sessions' 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: # tools.staticdir.content_types = {'n3': 'text/rdf+n3', 'rdf': 'application/rdf+xml'} gyorgyf@0: gyorgyf@0: gyorgyf@0: #main app config gyorgyf@0: [/] gyorgyf@0: response.timeout = 600 #sec gyorgyf@0: request.show_tracebacks = False gyorgyf@0: # log.access_file = 'mcserver-access.log' gyorgyf@0: # log.error_file = 'mcserver-error.log' 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