0

I looking for a way to incease 'fastcgi_read_timeout' in GAE Flex using runtime_config 'nginx_conf_include'.

The reason to increase the timeout is my http request requires around 90seconds but the default only 60seconds.

Can't manage to find in SO and Google.

ihsanberahim
  • 1,051
  • 12
  • 14

1 Answers1

1

You can create nginx-app.yaml file in the root directory of your service and add there a fastcgi_read_timeout directive:

location /* {
    fastcgi_send_timeout 60s;
}
A.Queue
  • 1,549
  • 6
  • 21