Added note to docs/django-admin.txt about 127.0.0.1 not being accessible from other machines on the network

git-svn-id: http://code.djangoproject.com/svn/django/trunk@900 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-10-17 13:05:55 +00:00
parent c686424ed9
commit b223d0fd87
1 changed files with 5 additions and 0 deletions

View File

@ -112,6 +112,11 @@ them to standard output, but it won't stop the server.
You can run as many servers as you want, as long as they're on separate ports. You can run as many servers as you want, as long as they're on separate ports.
Just execute ``django-admin.py runserver`` more than once. Just execute ``django-admin.py runserver`` more than once.
Note that the default IP address, 127.0.0.1, is not accessible from other
machines on your network. To make your development server viewable to other
machines on the network, use its own IP address (e.g. ``192.168.2.1``) or
``0.0.0.0``.
Examples: Examples:
~~~~~~~~~ ~~~~~~~~~