gunicorn 訪問日誌配置與項目啓動

gunicorn_config.py 文件的使用案例python

# 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", 8899)
#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)
View Code

訪問日誌和錯誤日誌就能夠被詳細記錄了app

啓動方式可使用supervisoer,在supervisor.conf 文集底部添加啓動配置ide

 [program:proname] 
command=gunicorn files_path:application -c gunicorn_config.py 
directory=filepath startsecs=0
stopwaitsecs=0 
autostart=true 
autorestart=true 
相關文章
相關標籤/搜索