I have development server (from google appengine sdk), running on my Ubuntu computer. I can access my site by navigating to localhost:8080
I want to access that site fro
If you're using Python:
sudo python2.5 dev_appserver.py -a 192.168.1.103 -p 8080 myapp/
Edit: The development server also happens to listen to port 8080 by default, so that 2nd argument is redundant.