uwsgi配置文件

[uwsgi]
http = :9000
#the local unix socket file than commnuincate to Nginx

#socket端口这个用作nginx与其通讯
socket = 127.0.0.1:8001 
# the base directory (full path)

#django项目根目录
chdir = /home/zhilei/helpdesk

# Django's wsgi file
wsgi-file = helpdesk/wsgi.py

# maximum number of worker processes

processes = 4
#thread numbers startched in each worker process
threads = 2

#处理表态数据,映射
static-map=/static=/home/zhilei/helpdesk/static

#monitor uwsgi status
stats = 127.0.0.1:9191
# clear environment on exit
vacuum = true
View Code

 

posted @ 2018-03-21 16:45  雷神约  阅读(153)  评论(0编辑  收藏  举报