6

I need the timeout to be high so I can use a debugger on my source code. It's getting passed to fastcgi from nginx correctly, but always times out after 60 seconds. I've changed as many timeout parameters as I could find, restarted nginx and fast-cgi after every change and nothing worked.

I see most users point questions like this to How do I prevent a Gateway Timeout with FastCGI on Nginx. But that solution did not work for me.

The parameters I've increased are:

  • fastcgi_read_timeout (the above thread says this fixed the issue for that user)
  • client_header_timeout
  • client_body_timeout
  • send_timeout
Community
  • 1
  • 1
joshm1
  • 553
  • 1
  • 10
  • 21

1 Answers1

3

Have you checked the max_execution_time value in php.ini?

That's the only other configurable value I can think of that might be causing a timeout.

Jonathan Chan
  • 2,355
  • 3
  • 25
  • 38