diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-10-04 11:51:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-04 11:51:18 +0200 |
| commit | c583418e3ec2a7f2997f739a51ae07291c18070e (patch) | |
| tree | a21d3984f608b513770186995fbe98ff7586acf6 /docs/ref | |
| parent | 9fbb5b5e16b44dff97a3caa0e288803a80fabdd3 (diff) | |
Removed note about "0" IP address from tutorial.
Tutorial should offer only minimum, necessary, explanation.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/django-admin.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index aa4c4e6ff8..b2fd82262d 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1008,8 +1008,8 @@ separate ports by executing ``django-admin 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`` or ``::`` (with IPv6 enabled). +machines on the network, use its own IP address (e.g. ``192.168.2.1``), ``0`` +(shortcut for ``0.0.0.0``), ``0.0.0.0``, or ``::`` (with IPv6 enabled). You can provide an IPv6 address surrounded by brackets (e.g. ``[200a::1]:8000``). This will automatically enable IPv6 support. |
