authsquare/app/config/server.py

13 lines
323 B
Python
Raw Normal View History

2024-06-17 12:21:48 +07:00
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
}