我正在使用 Google App Engine GUI。不知道我做错了什么,因为我正在追随 Google 在这方面的领导。在 GUI 中,应用程序在管理端口 8000 上运行并在端口 8080 上侦听。当我转到 localhost:8080 时,Chrome 中出现“服务器错误”。这是防火墙问题还是 GAE 问题?
helloudacity.py
import webapp2
class mainPage(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('Hello, Udacity!')
application = webapp2.WSGIApplication([
('/', MainPage),
], debug=true)
应用程序.yaml
application: your-app-id
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /.*
script: helloudacity.application