You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
249 B

3 years ago
  1. from gevent import monkey
  2. monkey.patch_all()
  3. import multiprocessing
  4. debug = True
  5. loglevel = 'debug'
  6. bind = '0.0.0.0:3389'
  7. pidfile = 'log/gunicorn.pid'
  8. logfile = 'log/debug.log'
  9. workers = multiprocessing.cpu_count() * 2 + 1
  10. worker_class = 'gevent'