aboutsummaryrefslogtreecommitdiff
path: root/fifconfig.wsgi.ini.dev
diff options
context:
space:
mode:
Diffstat (limited to 'fifconfig.wsgi.ini.dev')
-rw-r--r--fifconfig.wsgi.ini.dev17
1 files changed, 17 insertions, 0 deletions
diff --git a/fifconfig.wsgi.ini.dev b/fifconfig.wsgi.ini.dev
new file mode 100644
index 0000000..0f0930d
--- /dev/null
+++ b/fifconfig.wsgi.ini.dev
@@ -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 = 0.0.0.0:4681
+wsgi-file = fifconfig.py
+callable = app
+touch-reload = fifconfig.py
+touch-reload = fifconfig.conf
+touch-reload = fifconfig.wsgi.ini
+req-logger = file:log/req.log
+# to get strftime format fields, you need double percent signs
+logdate = "%%FT%%T"
+logger = file:log/fifconfig.log
+# the init script uses a different pidfile owned by root.
+pidfile = var/fifconfig-wsgi.pid
bgstack15