13 lines
323 B
Python
13 lines
323 B
Python
|
host = "localhost"
|
||
|
port = 15001
|
||
|
reloader = False
|
||
|
debug = False
|
||
|
server = 'gunicorn' # default = 'wsgiref'
|
||
|
|
||
|
session_opts = {
|
||
|
'session.type': 'file',
|
||
|
'session.cookie_expires': 30*24*60*60, # Session expiration in seconds
|
||
|
'session.data_dir': './.beaker/data',
|
||
|
'session.auto': True
|
||
|
}
|