aboutsummaryrefslogtreecommitdiff
path: root/outbound.wsgi.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'outbound.wsgi.ini.example')
-rw-r--r--outbound.wsgi.ini.example17
1 files changed, 17 insertions, 0 deletions
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
bgstack15