Abhilash,
Thank you so much for the link. I believe I have a working mailman 3 now. However, after setting Debug to False, the django GUI turned ugly in plain html, like the css files are not being used. I have since done collectstatic which saved the static files to the project directory/static, installed uwsgi.mod_wsgi, and apache. I'm now trying to make the old GUI appear, but still no luck. I don't get any error when I start httpd, mailman or the django project. It just looks ugly still. I'm not a web person so please bear with me:
Anyway, I already added this to my httpd.conf:
<VirtualHost *:80> ServerName <myservername.myhost.com> DocumentRoot "/var/www/html" Include "/opt/mailman-suite/apache.conf" </VirtualHost>
here's the apache.conf that I included in the httpd.conf:
Alias /favicon.ico /opt/mailman-suite/mailman-suite_project/static/hyperkitty/favicon.ico Alias /static /opt/mailman-suite/mailman-suite_project/static
ErrorLog /var/log/httpd/hyperkitty_error.log CustomLog /var/log/httpd/hyperkitty_access.log combined
WSGIScriptAlias /hyperkitty /opt/mailman-suite/mailman-suite_project/wsgi.py WSGIDaemonProcess hyperkitty threads=25 python-path=/opt/mailman-suite/mailman-suite_project # If using VirtualEnv #WSGIDaemonProcess hyperkitty threads=25 python-path=/path/to/project:/path/to/your/venv/lib/python2.X/site-packages
<Directory "/opt/mailman-suite/mailman-suite_project"> <Files wsgi.py> Order deny,allow Allow from all </Files> WSGIProcessGroup hyperkitty Options +FollowSymlinks </Directory>
<Directory "/opt/mailman-suite/mailman-suite_project/static"> Order deny,allow Allow from all Options +FollowSymlinks </Directory>
Thank you so much for helping.