25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
- from gevent import monkey
- monkey.patch_all()
- import multiprocessing
- debug = True
- loglevel = 'debug'
- bind = '0.0.0.0:3389'
- pidfile = 'log/gunicorn.pid'
- logfile = 'log/debug.log'
- workers = multiprocessing.cpu_count() * 2 + 1
- worker_class = 'gevent'
-
|