Hi all,
On lists.example.org I want to run Mailman3. Mailman3 works perfectly in a Docker Container on my Droplet.
So I wrote a VirtualHost like this:
<VirtualHost *:443>
ServerName lists.example.org
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/example.org/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example.org/privkey.pem
ServerAdmin donald@trump.org
Alias /static /opt/mailman/web/static
Alias /favicon.ico /opt/mailman/web/static/hyperkitty/img/favicon.ico
ProxyPassMatch ^/static/ !
ProxyPass / http://172.19.199.3:8000/
ProxyPassReverse / http://172.19.199.3:8000/
<Directory />
Allow from all
Require all granted
</Directory>
<Directory /opt/mailman/web/static/hyperkitty/img/>
Allow from all
Require all granted
Options FollowSymLinks
</Directory>
<Directory /opt/mailman/web/static/>
Options FollowSymLinks
Allow from all
Require all granted
</Directory>
</VirtualHost>
When I access lists.example.org, nothing is being displayed. But I can perfectly establish a connection to lists.example.org on port 443. Now comes the weird part: example.org displays the mailing list. So somehow the subdomain lists is being ignored.
This seems like a simple problem but I have found so many misleading tutorials…
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
It seems as if the SSL cert you have in the vhost is not for lists.example.org. So if you don’t actually have the SSL cert for lists.example.org in the vhost block, it’ll translate to going to https://IP/ instead and that would just go to the first virtualhost that apache has loaded at runtime.
Now as to why https://example.org pulls this vhost is unclear from the info you have up there.
Cheers
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Thanks, I got it working!