要在Google App Engine上托管静态(HTML)网站,app.yaml文件中应包含哪些内容?

时间:2013-08-18 07:01:42

标签: python google-app-engine app.yaml

我可以使用它来上传HTML页面吗?

app.yaml内容:

application: visualvidya
version: 1
runtime: python
api_version: 1

handlers:
- url: /(.*\.(gif|png|jpg|ico|js|css))
  static_files: \1
  upload: (.*\.(gif|png|jpg|ico|js|css))

1 个答案:

答案 0 :(得分:6)

静态网站的最小handlers部分可能如下所示:

handlers:
- url: /
  static_files: static/index.html
  upload: static/index.html

- url: /
  static_dir: static

每个网站都不同,正如肖恩在评论中指出的那样,您需要咨询the documentation