gunicorn.conf.py 562 B

12345678910
  1. workers = 5
  2. worker_class = "gevent"
  3. bind = "0.0.0.0:8090"
  4. # accesslog="/home/seecoder/Documents/pose-correction/pc-demo/log/gunicorn_access.log"
  5. # errorlog="/home/seecoder/Documents/pose-correction/pc-demo/log/gunicorn_error.log"
  6. # pidfile = '/home/seecoder/Documents/pose-correction/pc-demo/run/gunicorn.pid'
  7. accesslog = "/root/openpose/pose-correction/pc-demo/log/gunicorn_access.log"
  8. errorlog = "/root/openpose/pose-correction/pc-demo/log/gunicorn_error.log"
  9. pidfile = '/root/openpose/pose-correction/pc-demo/run/gunicorn.pid'
  10. capture_output = True