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