aboutsummaryrefslogtreecommitdiff
path: root/outbound.wsgi.ini.example
blob: f6f898ad6bc8379280769d25db53a7ef5a84b92e (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 = 127.0.0.1:4682
wsgi-file = /usr/libexec/outbound/outbound.py
callable = app
touch-reload = /usr/libexec/outbound/outbound.py
touch-reload = /etc/outbound.conf
touch-reload = /etc/outbound.wsgi.ini
req-logger = file:/var/log/outbound/req.log
# to get strftime format fields, you need double percent signs
logdate = "%%FT%%T"
logger = file:/var/log/outbound/outbound.log
# the init script uses a different pidfile owned by root.
pidfile = /var/outbound/outbound-wsgi.pid
bgstack15