Tag/version of Container Images
Version 0.4 and 0.5
I am receiving the error on first login.
environment variables set in docker compose:
- SERVE_FROM_DOMAIN=<mydomain.eu>
- MAILMAN_ADMIN_USER=postmaster
- MAILMAN_ADMIN_EMAIL=postmaster@<mydomain.eu>
Of course I am using mydomain.eu to access mailman.
Nginx configuration snippet:
location /static/ {
alias /opt/mailman/web/static/;
}
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
}