Actually it doesn't let me in to the login page / sign up page (the HTTP requests hangs until it times out). The URL I'm trying to access is http://localhost/accounts/login/?next=/mailman3/lists/ or http://localhost:8002/accounts/signup/?next=/mailman3/lists/ eventually Nginx returns a "502 Gateway timeout error"
I followed the instructions here https://docs.mailman3.org/en/latest/install/virtualenv.html but I changed my Nginx config shown below as I just want it to run on HTTP
server {
listen 80 default_server; listen [::]:80 default_server;
server_name _; 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;
} }
I'm sticking to DEBUG=True in the meantime as I don't require a production deployment yet.
The Django admin dashboard works fine for both DEBUG set to True or False