Node.js + static content served by Google App Engine
问题 The Google Cloud documentation isn't very precise on the available syntax for the app.yaml file used for my Node.js application. I used the syntax described in the Python documentation for GAE, from which I've found the handlers mecanism: handlers: - url: /index.html static_files: /public/index.html upload: /public/index.html I've avoid my expressjs rule to serve the /public/index.html content and finally I got a 404 error, meaning GAE is not serving my page as a static content: $ curl -i