blob: cac53bc3f84fa99c7758eb5f15d3680792c4eab5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# uwsgi is used in production deployment, in combination with pipenv (which
# generates the .venv file)
[uwsgi]
plugin = python37,http
http = :9119
#socket = 127.0.0.1:3031
manage-script-name = True
mount = /=fatcat_covid19.webface:app
virtualenv = .venv
processes = 6
threads = 4
stats = 127.0.0.1:3331
buffer-size = 32768
|