• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

  • 共43篇

    python3.X - Web - Django3.2.9

关闭

返回栏目

关闭

返回python3.X - Web - Django3.2.9栏目

42 - WSGI - gunicorn - 标准的应用服务器

作者:

贺及楼

成为作者

更新日期:2024-02-27 09:56:34

gunicorn

https://blog.51cto.com/u_15365215/5704116

gunicorn.conf.py

  1. workers = 1 # 定义同时开启的处理请求的进程数量,根据网站流量适当调整
  2. bind = "127.0.0.1:10031" # 监听ip及端口
  3. timeout = 60 # 设置超时时间为 60 秒
  4. graceful_timeout = 60
  5. wsgi_app = "wsgi"
  6. accesslog = "./../gun_access.log"
  7. errorlog = "./../gun_error.log"
  8. loglevel = "info"
  9. worker_class = "gevent"
  10. threads = 8
  1. nohup gunicorn > /dev/null 2>&1 &