send_timeout 300;
proxy_read_timeout 300;
What timeout controls this in passenger?
-Joe
--
Name: Joseph A. Williams
Email: j...@joetify.com
Blog: http://www.joeandmotorboat.com/
At this time the timeout is hardcoded. You can change it in
ext/nginx/Configuration.c:
ngx_conf_merge_msec_value(conf->upstream.send_timeout,
prev->upstream.send_timeout, 60000);
ngx_conf_merge_msec_value(conf->upstream.read_timeout,
prev->upstream.read_timeout, 60000);
--
Phusion | The Computer Science Company
Web: http://www.phusion.nl/
E-mail: in...@phusion.nl
Chamber of commerce no: 08173483 (The Netherlands)
See README.TXT.
--
Phusion | The Computer Science Company
Web: http://www.phusion.nl/
E-mail: in...@phusion.nl
No, you need to recompile and reinstall Nginx as well. Run
./bin/passenger-install-nginx-module.