24 Aug 2010
PHP群发邮件遇到的一些问题
虽然在PHP中取消了程序超时时间限制set_time_limit(0),但如果是NGINX + FASTCGI模型则可能抛出504 Gateway Time-out(此时PHP脚步还在运行中)
可通过调节以下参数增大超时时间
fastcgi_connect_timeout 300s;
fastcgi_send_timeout 300s;
fastcgi_read_timeout 300s;
有情提醒:在生产服务器上调整以上配置需谨慎,重则导致服务器宕机。