diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-10-17 13:05:55 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-10-17 13:05:55 +0000 |
| commit | b223d0fd87b5580709f11c86c8eb3d5fb2142183 (patch) | |
| tree | f1799dc653afebd5d33372a115ef77b057b8dba9 /docs/django-admin.txt | |
| parent | c686424ed9ba71ddfc6655741c8781b071f08881 (diff) | |
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
Diffstat (limited to 'docs/django-admin.txt')
| -rw-r--r-- | docs/django-admin.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt index ba9bb1403f..0faabbfcca 100644 --- a/docs/django-admin.txt +++ b/docs/django-admin.txt @@ -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. 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: ~~~~~~~~~ |
