aboutsummaryrefslogtreecommitdiff
path: root/extra/fuss-el7.patch
diff options
context:
space:
mode:
Diffstat (limited to 'extra/fuss-el7.patch')
-rw-r--r--extra/fuss-el7.patch7
1 files changed, 3 insertions, 4 deletions
diff --git a/extra/fuss-el7.patch b/extra/fuss-el7.patch
index 3a9ceed..199a9be 100644
--- a/extra/fuss-el7.patch
+++ b/extra/fuss-el7.patch
@@ -1,13 +1,12 @@
Summary: Make changes necessary for this package to work on CentOS 7
Message: Correct name of python36 wsgi plugin, and disable icons
-Date: 2021-01-05
+Date: 2021-02-04
diff master/fuss.wsgi.ini.example el7/fuss.wsgi.ini.example
index 42ebfe2..75b59bb 100644
--- a/fuss.wsgi.ini.example
+++ b/fuss.wsgi.ini.example
-@@ -2,7 +2,7 @@
- # References:
- # https://uwsgi-docs.readthedocs.io/en/latest/Logging.html
+@@ -1,6 +1,6 @@
+ # call with: uwsgi_python3 --ini fuss.wsgi.ini
[uwsgi]
-plugins = python3,logfile
+plugins = python36,logfile
bgstack15