application: myapp # 你的google app id
version: 1 # 版本
runtime: go # 运行时语言
api_version: go1 # API的版本
default_expiration: 1d 2h 3m 4s # 可选的,如果静态资源没有设置expiration,则会使用该项
handlers: # 分发器
- url: /stylesheets # 扩展的posix regex表达式,可以使用\W, \w, \S, \s, \D, \d
static_dir: stylesheets # 静态目录
mime_type: xxxx # 可选的,如果设置了,就会指定response的类型
expiration: 1d 2h 3m 4s # 可选的,表示静态资源应被客户端缓存的时间
- url: /(.*\.(gif|png|jpg))$
static_files: static/\1 # url捕获的分组是可以用的(\1)
upload: static/.*\.(gif|png|jpg)$ # 可选的,upload用来限制static_files可访问的文件
application_readable: true # 可选的,为真时,脚本可以访问该文件
http_header: # 可选的,表示可以设置response的header
Access-Control-Allow-Origin: * # 可选的,设置为*,所有网站都可以访问myapp.appspot.com的资源
# 设置为http://mygame.appspot.com,则只有该站可访问资源
- url: /.*
script: _go_app # 表示由脚本处理该url
secure: optional # 可选的,此为默认值,http和https都可以成功访问站点
never # https会被重定向到http协议下的统一站点
always # http会被重定向到https协议下的统一站点
login: optional # 可选的,此为默认值,不需要登录
required # 需要登录才能访问,否则执行auth_fail_action
admin # 必须是管理员帐户才能访问,未登录执行auth_fail_action,返回401
auth_fail_action: redirect # 可选的,此为默认值,重定向到google登录页面
unauthorized # 返回401
error_handlers: # 可选的,设置错误页面
- file: default_error.html # 默认的错误页面
- error_code: over_quota # 指定错误码
file: over_quota.html # 该错误码的页面
skip_files: # 表示应用目录中匹配下列正则表达式的文件都不需要上传
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
还有一些其他信息,请参考google app engine sdk
有疑问加站长微信联系(非本文作者)