From 4a8ce7e2862b338a7f8e34d016a3119290239b0b Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 29 Nov 2022 16:09:22 -0500 Subject: initial commit --- outbound.wsgi.ini.example | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 outbound.wsgi.ini.example (limited to 'outbound.wsgi.ini.example') diff --git a/outbound.wsgi.ini.example b/outbound.wsgi.ini.example new file mode 100644 index 0000000..f6f898a --- /dev/null +++ b/outbound.wsgi.ini.example @@ -0,0 +1,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 -- cgit