美文网首页
2018-05-07 gunicorn 配置

2018-05-07 gunicorn 配置

作者: 多吃水果少吃肉 | 来源:发表于2018-05-07 17:02 被阅读0次

    转载自:https://segmentfault.com/q/1010000003788857/a-1020000003790672

    1. 不要用nohup 启动,用 supervisord 启动。
    2. 不要用 命令中传参来做配置,用文件。
    3. 配置说明见官方文档 http://docs.gunicorn.org/en/latest/settings.html#logging

    命令(supervisord 里的,也可直接运行):

    # supervisord 里,或者你直接用下面的命令也可以
    command = /path/to/gunicorn app_module:app -c /path/to/gunicorn_config.py
    # /path/to/gunicorn app_module:app -c /path/to/gunicorn_config.py
    

    配置文件 gunicorn_config.py

    # coding=utf-8
    import sys
    import os
    import multiprocessing
    
    path_of_current_file = os.path.abspath(__file__)
    path_of_current_dir = os.path.split(path_of_current_file)[0]
    
    _file_name = os.path.basename(__file__)
    
    sys.path.insert(0, path_of_current_dir)
    
    worker_class = 'sync'
    workers = multiprocessing.cpu_count() * 2 + 1
    
    chdir = path_of_current_dir
    
    worker_connections = 1000
    timeout = 30
    max_requests = 2000
    graceful_timeout = 30
    
    loglevel = 'info'
    
    reload = True
    debug = False
    
    bind = "%s:%s" % ("0.0.0.0", 8811)
    pidfile = '%s/run/%s.pid' % (path_of_current_dir, _file_name)
    errorlog = '%s/logs/%s_error.log' % (path_of_current_dir, _file_name)
    accesslog = '%s/logs/%s_access.log' % (path_of_current_dir, _file_name)
    

    相关文章

      网友评论

          本文标题:2018-05-07 gunicorn 配置

          本文链接:https://www.haomeiwen.com/subject/bssvrftx.html