gpt4 book ai didi

python - 要在 Google App Engine 上托管静态 (HTML) 网站,app.yaml 文件中应该包含什么?

转载 作者:太空宇宙 更新时间:2023-11-03 13:46:52 25 4
gpt4 key购买 nike

我可以用它来上传 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 部分可能如下所示:

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

- url: /
static_dir: static

每个网站都不一样,所以正如 Sean 在评论中指出的那样,您需要咨询 the documentation .

关于python - 要在 Google App Engine 上托管静态 (HTML) 网站,app.yaml 文件中应该包含什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18296560/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com