aboutsummaryrefslogtreecommitdiffstats
path: root/docker/app/uwsgi.ini
blob: 8d336d5c47aa7a1d29ccc89dc4e5d518d817734a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[uwsgi]
# Exposed ports
http = :4000

# File settings
wsgi = pysite.wsgi:application
chdir = /app

# Concurrency options
master = true
threads = 4
auto-procname = true
procname-prefix-spaced = pysite :

# Startup settings
need-app = true
uid = 1500