選択できるのは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'