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

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

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

# Startup settings
need-app = true
uid = 1500