On 8/14/06, Gloria <[EMAIL PROTECTED]> wrote:
>
> Hi. I am a Python geek who has been in the CherryPy/PythonPaste world
> for the past year. I have decided to give Django a serious look, and I
> have a simple question.
>
> After running this command:
>
> [EMAIL PROTECTED] wi_2> python manage.py runserver 1111
...
> I expect to get to this URL from a remote machine, like this:
>
> http://dev.blah_server.com:1111

127.0.0.1 is a local loopback.

Get the IP address for dev.blah_server.com, then runserver with it.
So, if dev.blah_server.com has an IP of 10.1.1.2, you'd run this:

python manage.py runserver 10.1.1.2:1111

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to