0

I created the app.yaml and index.py files in a folder.

app.yaml

application: firstpython
version: 1
runtime: python
api_version: 1

handlers:
- url: /.*
  script: index.py

index.py

print 'Content-Type: text/plain'
print ''
print 'Hello, World'

When I run the dev_appserver.py folder command, I see the page from my own computer by typing localhost:8080. But computers on the same network another can not reach this page by typing my ip, eg 192.168.1.35:8080.

How can I do that?

Tatsuyuki Ishi
  • 3,883
  • 3
  • 29
  • 41
  • Are you trying to make it completely public or do a local demo? – Tatsuyuki Ishi Mar 11 '17 at 11:28
  • I want to local demo. "dev_appserver.py --host 192.168.1.36 --port 8081 ./out/app_engine/" works... Thank you... – curiouser Mar 11 '17 at 12:55
  • 1
    not about appengine. issue is correctly configuring your network. – Zig Mandel Mar 11 '17 at 13:08
  • 2
    Possible duplicate of [Is there any way to access GAE dev app server in the local network?](http://stackoverflow.com/questions/7534967/is-there-any-way-to-access-gae-dev-app-server-in-the-local-network) – new name Mar 11 '17 at 13:26

0 Answers0