From c8539731103e97ad0e86dbff118302b2d7a812f6 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 9 Sep 2007 22:00:30 +0000 Subject: [PATCH] Improved 'Examples of using different ports and addresses' section in docs/django-admin.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@6076 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/django-admin.txt | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/django-admin.txt b/docs/django-admin.txt index 400f5146e5..bd675d6cd9 100644 --- a/docs/django-admin.txt +++ b/docs/django-admin.txt @@ -390,8 +390,16 @@ means any Python code changes you make while the server is running will *not* take effect if the particular Python modules have already been loaded into memory. -Examples: -~~~~~~~~~ +Examples of using different ports and addresses +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Port 8000 on IP address 127.0.0.1:: + + django-admin.py runserver + +Port 8000 on IP address 1.2.3.4:: + + django-admin.py runserver 1.2.3.4:8000 Port 7000 on IP address 127.0.0.1::