Changes between Version 22 and Version 23 of ServerArrangements


Ignore:
Timestamp:
Aug 19, 2006, 1:46:51 PM (18 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ServerArrangements

    v22 v23  
    4949
    5050If that hasn't put you off and you still need CGI, take a look at [http://code.djangoproject.com/ticket/2407 ticket 2407]
     51
     52== Django built-in development server ==
     53
     54By default the development server that comes with Django will only accept connections on the localhost interface (127.0.0.1). To have it listen on the proper network interface, you can start the server like this:
     55
     56python manage.py runserver 0.0.0.0:8000
Back to Top