# Apache mod_wsgi config. # This goes in a global section. WSGIDaemonProcess mailman-web display-name=mailman-web maximum-requests=1000 umask=0002 user=mailman group=mailman python-path=/opt/mailman/mm/venv/lib/python3.6/site-packages:/opt/mailman/mm/venv/lib/python3.6 python-home=/opt/mailman/mm/venv home=/opt/mailman/mm/var WSGIRestrictSignal Off # (I'm not sure that WSGIRestrictSignal Off is required, but it was in the # provided example so I kept it. I also made changes to WSGIDaemonProcess # based on my own mod_wsgi experience elsewhere.) # This goes in the VirtualHost block for the domain. # Mailman 3 stuff Alias /static "/opt/mailman/mm/static" Require all granted WSGIScriptAlias /mm3 /opt/mailman/mm/wsgi.py Order deny,allow Allow from all Require all granted WSGIProcessGroup mailman-web