您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
249 B

3 年前
  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'