18 lines
356 B
INI
18 lines
356 B
INI
[uwsgi]
|
|
# chdir to the folder of this config file
|
|
chdir = %d/
|
|
|
|
# load Django's wsgi.py for this application
|
|
module = arrowcounter.wsgi:application
|
|
|
|
# serve static files under app static dirs
|
|
static-map2 = /static=%d/counter
|
|
static-map2 = /static=%d/user
|
|
static-expires = /* 7776000
|
|
offload-threads = %k
|
|
|
|
socket = 0.0.0.0:8000
|
|
master = true
|
|
processes = 4
|
|
|
|
|