On Aug 21, 2021, at 2:05 AM, Richard Rosner <rrosner5@gmail.com> wrote:
postorius, admin, hyperkitty and user-profile work now, accounts doesn't
WARNING 2021-08-21 10:52:41,931 3975 django.request Not Found: /accounts WARNING 2021-08-21 10:52:41,931 3975 django.request Not Found: /accounts [pid: 3975|app: 0|req: 26/26] 127.0.0.1 () {56 vars in 1208 bytes} [Sat Aug 21 10:52:41 2021] GET /accounts => generated 5651 bytes in 433 msecs (H
TTP/1.1 404) 5 headers in 170 bytes (1 switches on core 0)
/accounts itself is going to 404, because it doesn’t point to a valid path. Can you try /accounts/login/ or /accounts/signup/?
pid 3975 is /usr/bin/uwsgi --plugin python3 --ini /etc/mailman3/uwsgi.ini
PS: now I seem to have done something stupid. I wanted to switch everything from example.com to the real domain. So I added it in admin and got rid of example.com. Seems there was some configuration missing, now nothing is working. How do I get everything back and have it use the right domain?
There is a SITE_ID = 1 configuration somewhere in your settings.py, you need to replace that with SITE_ID = 2.
Each Site is basically representing one domain, so you can service multiple sites from same setup by changing just the SITE_ID. Since you removed example.com with SITE_ID = 1, that would fail to find any domain with that id.
-- thanks, Abhilash Raj (maxking)