Thank you again for this great tool!
How can I allow access via different IP addresses? Different to local host.
I tried to change the according line in the settings.py file to:
ALLOWED_HOSTS = os.environ.get("DJANGO_ALLOWED_HOSTS", default=['127.0.0.1', 'Bla.Bla.Bla.Bla']).split(" ").
However, it does not work.
On the web, there is this line often without os.environ mentioned to allow other hosts. However, this does also not work?