aboutsummaryrefslogtreecommitdiff
path: root/outbound.wsgi.ini.dev
blob: 1825540f567f33355415e5501727f497c8bde356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[uwsgi]
# CentOS 7 uwsgi needs "python36" added to this list.
#plugins = logfile, python36
# Devuan Ceres does not.
plugins = logfile
http-socket = 0.0.0.0:4682
wsgi-file = outbound.py
callable = app
touch-reload = outbound.py
touch-reload = outbound.conf
touch-reload = outbound.wsgi.ini
req-logger = file:log/req.log
# to get strftime format fields, you need double percent signs
logdate = "%%FT%%T"
logger = file:log/outbound.log
# the init script uses a different pidfile owned by root.
pidfile = var/outbound-wsgi.pid
bgstack15