aboutsummaryrefslogtreecommitdiff
path: root/extra/fuss-el7.patch
blob: 199a9befaeb2ac77f4cad615799a6b42c70aeb7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Summary: Make changes necessary for this package to work on CentOS 7
Message: Correct name of python36 wsgi plugin, and disable icons
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
@@ -1,6 +1,6 @@
 # call with: uwsgi_python3 --ini fuss.wsgi.ini
 [uwsgi]
-plugins = python3,logfile
+plugins = python36,logfile
 http-socket = 0.0.0.0:5003
 wsgi-file = /usr/libexec/fuss/fuss.py
 callable = app
--- a/fuss.conf.example    2021-01-05 22:20:05.102222226 -0500
+++ b/fuss.conf.example    2021-01-05 22:24:51.642095995 -0500
@@ -52,7 +52,7 @@
 ]
 
 # Include mimetype icon support on html-long. This requires META = True
-ICONS = True
+ICONS = False
 ICON_THEME = "Numix"
 
 # for in-app adjustments of logging, see project [hex-zero](https://gitlab.com/bgstack15/hex-zero/-/tree/stack) which has limited ability to affect logging.

bgstack15