11 lines
157 B
INI
11 lines
157 B
INI
[uwsgi]
|
|
chdir=/
|
|
module = webapp.app
|
|
callable = app
|
|
socket = :5000
|
|
processes = 4
|
|
threads = 2
|
|
master = true
|
|
chmod-socket = 660
|
|
vacuum = true
|
|
die-on-term = true |