aboutsummaryrefslogtreecommitdiff
path: root/stackbin.wsgi.ini
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2022-02-14 15:42:18 -0500
committerB Stack <bgstack15@gmail.com>2022-02-14 15:42:18 -0500
commit75d6e39dcaa27f0404e606a188fa4de46cae91f9 (patch)
tree3377f78bd332e2c93e8dfc262f92918284a664cc /stackbin.wsgi.ini
parentsuppress favicon errors (diff)
downloadstackbin-75d6e39dcaa27f0404e606a188fa4de46cae91f9.tar.gz
stackbin-75d6e39dcaa27f0404e606a188fa4de46cae91f9.tar.bz2
stackbin-75d6e39dcaa27f0404e606a188fa4de46cae91f9.zip
add initial centos7 doc
Diffstat (limited to 'stackbin.wsgi.ini')
-rw-r--r--stackbin.wsgi.ini5
1 files changed, 4 insertions, 1 deletions
diff --git a/stackbin.wsgi.ini b/stackbin.wsgi.ini
index 4b38ea8..cf35ffb 100644
--- a/stackbin.wsgi.ini
+++ b/stackbin.wsgi.ini
@@ -1,5 +1,8 @@
[uwsgi]
-plugins = logfile
+# CentOS 7 uwsgi needs "python36" added to this list.
+plugins = logfile, python36
+# Devuan does not.
+#plugins = logfile
http-socket = 0.0.0.0:5000
wsgi-file = stackbin.py
callable = app
bgstack15