Django

Code

Changeset 900

Show
Ignore:
Timestamp:
10/17/05 08:05:55 (3 years ago)
Author:
adrian
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/django-admin.txt

    r795 r900  
    113113Just execute ``django-admin.py runserver`` more than once. 
    114114 
     115Note that the default IP address, 127.0.0.1, is not accessible from other 
     116machines on your network. To make your development server viewable to other 
     117machines on the network, use its own IP address (e.g. ``192.168.2.1``) or 
     118``0.0.0.0``. 
     119 
    115120Examples: 
    116121~~~~~~~~~