On Wed, Apr 22, 2020, at 7:22 AM, Ralf Wiegand wrote:
Hello Members, I am testing mailman3 in a test environment.
python manage.py runserver Performing system checks...
System check identified no issues (0 silenced). April 22, 2020 - 14:13:57 Django version 2.2.12, using settings 'settings' Starting development server at http://127.0.0.1:8000/ Quit the server with CONTROL-C.
tcp 0 0 127.0.0.1:8000 0.0.0.0:* LISTEN 6497/python tcp 0 0 127.0.0.1:8001 0.0.0.0:* LISTEN 6404/python
How can I change this to have access from any host on my local network. The server running mailman3+hyperkitty+postorius is a rhel7 server without a GUI interface. I also need to give access to our developer on the same subnet.
Have a look at the docs for runserver
:
https://docs.djangoproject.com/en/3.0/ref/django-admin/#runserver
You basically need to run:
python manage.py runserver 0.0.0.0:8000
Thank You,
Best regards,
Ralf Wiegand
Mailman-users mailing list -- mailman-users@mailman3.org To unsubscribe send an email to mailman-users-leave@mailman3.org https://lists.mailman3.org/mailman3/lists/mailman-users.mailman3.org/
-- thanks, Abhilash Raj (maxking)