python – 要在Google App Engine上托管静态(HTML)网站,应该在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))
解决方法:
静态站点的最小处理程序部分可能如下所示:
handlers:
- url: /
static_files: static/index.html
upload: static/index.html
- url: /
static_dir: static
每个网站都不同,正如肖恩在评论中指出的那样,你会想咨询the documentation.
标签:python,google-app-engine,app-yaml 来源: https://codeday.me/bug/20190825/1720046.html