我正在寻找一种使用runtime_config'nginx_conf_include'在GAE Flex中增加'fastcgi_read_timeout'的方法。
增加超时的原因是我的http请求大约需要90秒,而默认时间只有60秒。
无法在SO和Google中找到。
答案 0 :(得分:1)
您可以在服务的根目录中创建nginx-app.yaml文件,并在其中添加fastcgi_read_timeout指令:
location /* {
fastcgi_send_timeout 60s;
}