Google App Engine dispatch.yaml验证错误PHP模块
更新dispatch.yaml时出现以下错误。
错误400:---开始服务器输出---
验证错误:无效的调度配置 - 模块“重定向”不存在。 上传此模块的一个版本并重试。
---最终服务器输出---
的app.yaml
应用程序:测试
模块:默认
版本:1-1
运行时:php55
api_version:1
线程安全:是的
处理:
- url:/(.*)
static_files:index.html
上传:index.html
redirect.yaml
应用程序:测试
模块:重定向
版本:1-1
运行时:php55
api_version:1
线程安全:是的
处理:
- 网址:/
脚本:routing.php
dispatch.yaml
调度:
- 网址:“example.com/”
模块:重定向
- 网址:“/ *”
模块:默认
我能解决它吗?
当您在文件夹上运行appcfg.py update
,只会上传app.yaml
指定的默认模块。 你需要指定你想单独上传的任何附加模块。
上一篇: Google App Engine dispatch.yaml Validation error PHP module