Hi,

I have faced the same issue and with several sources across the internet I was able to fix it for me.

1.) Adding a wwsympa.service
2.) Changing the apache config.

Maybe this helps someone facing the issues while updating to bullseye.

cheers
Philipp
--- /etc/apache2/conf-available/sympa.conf_ORIG	2021-03-12 14:55:03.799536684 +0100
+++ /etc/apache2/conf-available/sympa.conf	2021-06-20 13:24:42.543000224 +0200
@@ -18,8 +18,8 @@
         Require all granted
     </Directory>
 
-    ScriptAlias /sympa /usr/lib/cgi-bin/sympa/wwsympa-wrapper.fcgi
-    <Directory /usr/lib/cgi-bin/sympa>
+    <Location /sympa>
+        SetHandler "proxy:unix:/run/sympa/wwsympa.socket|fcgi://"
         Require all granted
-    </Directory>
+    </Location>
 </IfModule>
[Unit]
Description=WWSympa - Web interface for Sympa mailing list manager
After=syslog.target sympa.service
 
[Service]
Type=forking
PIDFile=/run/sympa/wwsympa.pid
ExecStart=/usr/bin/spawn-fcgi -F $FCGI_CHILDREN \
    -P /run/sympa/wwsympa.pid \
    -s /run/sympa/wwsympa.socket \
    -u $FCGI_USER -g $FCGI_GROUP $FCGI_OPTS -- \
    /usr/lib/cgi-bin/sympa/wwsympa.fcgi
Environment="FCGI_CHILDREN=5"
Environment="FCGI_USER=sympa"
Environment="FCGI_GROUP=sympa"
Environment="FCGI_OPTS=-M 0600 -U www-data"
Restart=always

[Install]
WantedBy=multi-user.target

Reply via email to