我将所有内容重定向到我的 app.yaml 中的单个文件,就像这样
- url: /.*
script: frontcontroller.application
但我仍然必须使用 robots.txt,这会在我这样做时导致错误
- url: /robots.txt
static_files: robots.txt
- url: /.*
script: frontcontroller.application
错误是“缺少 URL robots.txt 的“上传”属性,我知道它需要像这样的第三个选项
- url: robots.txt
static_files: robots.txt
upload: ??????
上传属性的正确值是多少?