Files
order/uwsgi.ini

19 lines
365 B
INI
Raw Permalink Normal View History

2019-08-21 16:58:26 +08:00
[uwsgi]
#源码目录
2023-10-04 23:58:34 +08:00
chdir=/data/www/order
2019-08-21 16:58:26 +08:00
#python 虚拟环境
2019-08-21 18:15:55 +08:00
home=/data/www/python3_vir
2019-08-21 16:58:26 +08:00
module=manager
callable=app
master=true
processes=4
2023-10-04 23:58:34 +08:00
http=0.0.0.0:8999
2019-08-21 18:15:55 +08:00
socket=/data/www/logs/order.sock
2019-08-21 16:58:26 +08:00
buffer-size=65535
2019-08-21 18:15:55 +08:00
pidfile=/data/www/logs/order.pid
2019-08-21 16:58:26 +08:00
chmod-socket=777
logfile-chmod=644
2019-08-21 18:15:55 +08:00
daemonize=/data/www/logs/order.log
2023-10-04 23:58:34 +08:00
static-map = /static=/data/www/order/web/static
2023-10-05 00:55:03 +08:00