Skip to content
Snippets Groups Projects
gunicorn_config.py 204 B
Newer Older
  • Learn to ignore specific revisions
  • """Configuration for the gunicorn server"""
    from mcserver import Config
    
    bind = "{0}:{1}".format(Config.HOST_IP, Config.CORPUS_STORAGE_MANAGER_PORT)
    debug = False
    reload = True
    timeout = 3600
    workers = 1