码迷,mamicode.com
首页 > 其他好文 > 详细

gunicorn 访问日志配置与项目启动

时间:2018-07-23 19:54:02      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:gunicorn   corn   art   pidfile   highlight   log   项目启动   man   ror   

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", 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

访问日志和错误日志就可以被详细记录了

启动方式可以使用supervisoer,在supervisor.conf 文集底部添加启动配置

 [program:proname] 
command=gunicorn files_path:application -c gunicorn_config.py 
directory=filepath startsecs=0
stopwaitsecs=0 
autostart=true 
autorestart=true 

  

gunicorn 访问日志配置与项目启动

标签:gunicorn   corn   art   pidfile   highlight   log   项目启动   man   ror   

原文地址:https://www.cnblogs.com/maxiaohei/p/9356368.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!