20 lines
391 B
INI
20 lines
391 B
INI
[uwsgi]
|
|
base = /cwebcomp
|
|
chdir = %(base)
|
|
home = %(base)
|
|
pidfile= %(base)/cwebcomp.pid
|
|
pythonpath= /usr/local
|
|
uid = www-data
|
|
gid = www-data
|
|
module = wsgi:application # path to wsgy.py file
|
|
socket = :8000
|
|
processes = 8
|
|
threads = 4
|
|
master = true
|
|
chmod-socket = 660
|
|
vacuum = true
|
|
die-on-term = true
|
|
harakiri = 20
|
|
max-requests = 5000
|
|
logs = %(base)/uwsgi_info.logs
|
|
daemonize = %(base)/uwsgi.logs |