You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
flyapps/fir_ser/uwsgi.conf

38 lines
852 B

[uwsgi]
# 对外提供 http 服务的端口
#http = 127.0.0.1:8899
#the local unix socket file than commnuincate to Nginx 用于和 nginx 进行数据交互的端口
socket = 127.0.0.1:8899
# the base directory (full path) django 程序的主目录
4 years ago
chdir = ./
# Django's wsgi file
wsgi-file = fir_ser/wsgi.py
touch-reload = fir_ser
#uwsgi 内部解析数据包大小为4K ,自己可以增加64k
buffer-size = 65536
# maximum number of worker processes
processes = 8
#thread numbers startched in each worker process
threads = 4
#monitor uwsgi status 通过该端口可以监控 uwsgi 的负载情况
stats = 127.0.0.1:9191
4 years ago
uid=nginx
gid=nginx
# clear environment on exit
vacuum = true
enable-threads = true
# 后台运行,并输出日志
4 years ago
daemonize = ./flyapp.log
4 years ago
# 为了让阿里云cdn可以缓存数据
del-header=cache-control