Hi all, I've done the additional steps
/opt/mailman/mm/bin/django-admin migrate /opt/mailman/mm/bin/django-admin createsuperuser
without error, and also started the services mailman, qcluster and gunicorn without error messages.
However, I just get an internal server error when I try to access https://lists.mydomain.com/ (which is served by a local apache virthost).
The apache log shows just one error:
[Thu Jan 06 10:01:39.201833 2022] [proxy:warn] [pid 3627279] [client 333.333.333.333:59328] AH01144: No protocol handler was valid for the URL / (scheme 'http'). If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
The virtual host is configured like this:
| <VirtualHost lists.mydomain.com:443> | | ServerName lists.mydomain.com | Include /etc/letsencrypt/options-ssl-apache.conf | SSLCertificateFile /etc/letsencrypt/live/myhost.mydomain.com/fullchain.pem | SSLCertificateKeyFile /etc/letsencrypt/live/myhost.mydomain.com/privkey.pem | ServerAdmin mailman@lists.mydomain.com | Alias /static /opt/mailman/mm/web/static | Alias /favicon.ico /opt/mailman/mm/web/static/hyperkitty/img/favicon.ico | ProxyPassMatch ^/mm/static/ ! | ProxyPass / http://localhost:8000/ | ProxyPassReverse / http://localhost:8000/ | | <Directory /> | Allow from all | Require all granted | </Directory> | | <Directory /opt/mailman/mm/web/static/hyperkitty/img/> | Allow from all | Require all granted | Options FollowSymLinks | </Directory> | | <Directory /opt/mailman/mm/web/static/> | Options FollowSymLinks | Allow from all | Require all granted | </Directory> | | </VirtualHost>
Can anybody tell me why this doesn't work?
Cheers, Michael.