I'm trying to access Django Developer Server from foreign IP but it is not working.
I have created a test application in the server. I've created a test virtual environment also.
I start the Developer Server using the following command:
env/bin/python manage.py runserver 0.0.0.0:8080
The server starts without any problems, but when I go to my server's IP address (not forgetting the port at the end), I get a "This site can't be reached".
Any ideas what the problem maybe? I need help in narrowing down towards a solution because I don't know where to start.
Any help would be appreciated, thanks.
Just to add, I have edited the main urls.py to show the app in the index.
urlpatterns = [
url(r'^$', views.index, name='index'),
url(r'^admin/', admin.site.urls),
]
Edit to add basic server information: Linux hosting.nonprofit.net.nz 3.13.0-44-generic #73-Ubuntu SMP Tue Dec 16 00:22:43 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux