I followed the basic steps to configure wagtail are as:
1. Install Wagtail
pip install wagtail
2. Start your site
wagtail start mysite
3. Set up the database
cd mysite
python manage.py migrate
4. Create an administrator account
python manage.py createsuperuser
python manage.py runserver
sign in at http://127.0.0.1:8000/admin/
Rather than
http://127.0.0.1:8000/admin/ I want to access this with server's ip i.e.
http://server-ip:8000/admin/When I try accessing it gives an error page as:
server IP address be in ALLOWED_HOSTS
How to insert my server ip address in ALLOWED_HOSTS settings. There is no settings.py file i see here. How to proceed?
Thanks.