aboutsummaryrefslogtreecommitdiff
path: root/stackbin.wsgi.ini
blob: 4b38ea8e1aac5265e6347078476c0bea142c1083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[uwsgi]
plugins = logfile
http-socket = 0.0.0.0:5000
wsgi-file = stackbin.py
callable = app
touch-reload = stackbin.py
touch-reload = config.cfg
touch-reload = stackbin.wsgi.ini
# the template files are not necessary, because flask always loads it from disk for each request
req-logger = file:log/req.log
# to get strftime format fields, you need double percent signs
logdate = "%%FT%%T"
logger = file:log/stackbin.log
# the init script uses a different pidfile owned by root.
pidfile = stackbin.pid
bgstack15