I am running a file with considerable amount of code and have to process it for 1000 users. It takes approximately 55 seconds to process 500 users, so I have to increase the default gateway timeout time.
From this question, I found that I have to increase fastcgi_read_timeout
, but I don't know where to put it in fastcgi.conf
.
fastcgi_read_timeout
should be put into a location which you're using for processing requests to your file.
location {
fastcgi_pass you.app:9000;
...
fastcgi_read_timeout 900s; # 15 minutes
}
Please, see more examples in documentation
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With