Accessing local GAE SDK server from another computer in the network

后端 未结 4 2253
一生所求
一生所求 2021-02-07 20:14

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

4条回答
  •  不要未来只要你来
    2021-02-07 20:33

    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.

提交回复
热议问题