aboutsummaryrefslogtreecommitdiff
path: root/stackbin.wsgi.ini
blob: cac4511155f954bd7eff87349fb1f38db7396f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[uwsgi]
plugins = logfile
http-socket = 0.0.0.0:5000
wsgi-file = pastebin.py
callable = app
touch-reload = pastebin.py
touch-reload = config.cfg
touch-reload = stackbin.wsgi.ini
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