aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/wsgi-ini-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/wsgi-ini-fix.patch')
-rw-r--r--debian/patches/wsgi-ini-fix.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/patches/wsgi-ini-fix.patch b/debian/patches/wsgi-ini-fix.patch
new file mode 100644
index 0000000..7823ca6
--- /dev/null
+++ b/debian/patches/wsgi-ini-fix.patch
@@ -0,0 +1,13 @@
+--- a/stackbin.wsgi.ini.example
++++ b/stackbin.wsgi.ini.example
+@@ -1,8 +1,8 @@
+ [uwsgi]
+ # CentOS 7 uwsgi needs "python36" added to this list.
+-plugins = logfile, python36
++#plugins = logfile, python36
+ # Devuan Ceres does not.
+-#plugins = logfile
++plugins = logfile
+ http-socket = 127.0.0.1:4680
+ wsgi-file = /usr/libexec/stackbin/stackbin.py
+ callable = app
bgstack15