当我的 php 脚本需要运行超过 60 秒时,我不断收到 504 网关错误。
我在专用服务器上的 Media Temple 上。我已经联系了 Media Temple,他们对我很有帮助,但他们的建议似乎都对我不起作用。我被告知要编辑这个文件。
/etc/httpd/conf.d/fcgid.conf
我有...见下文
LoadModule fcgid_module modules/mod_fcgid.so
<IfModule mod_fcgid.c>
<IfModule !mod_fastcgi.c>
AddHandler fcgid-script fcg fcgi fpl
</IfModule>
FcgidIPCDir /var/run/mod_fcgid/sock
FcgidProcessTableFile /var/run/mod_fcgid/fcgid_shm
FcgidIdleTimeout 300
FcgidMaxRequestLen 1073741824
FcgidProcessLifeTime 10000
FcgidMaxProcesses 64
FcgidMaxProcessesPerClass 15
FcgidMinProcessesPerClass 0
FcgidConnectTimeout 600
FcgidIOTimeout 600
FcgidInitialEnv RAILS_ENV production
FcgidIdleScanInterval 600
</IfModule>
我试图尽可能地最大化一切。为了测试这一点,我只是运行下面的函数。
function test504(){
@set_time_limit(0);
sleep(60);
echo "true";
}
睡眠将适用于低于 60 秒的任何值,但任何更多的值都会导致 504 网关错误
我的 phpinfo(); 输出
max_execution_time 600
max_input_time 180
我看过一些关于增加 fastcgi_connect_timeout 设置的帖子,但不知道在哪里可以找到 Media Temple。
任何人都可以帮忙吗?谢谢。
** 更新 **
在与支持人员聊天后,我被告知我需要编辑 nginx.conf 并被定向到这篇文章http://blog.secaserver.com/2011/10/nginx-gateway-time-out/
我在服务器设置中找不到任何值。client_header_timeout client_body_timeout send_timeout fastcgi_read_timeout
我的 nginx.conf 文件看起来像这样
#error_log /var/log/nginx/error.log info;
#pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 120;
#tcp_nodelay on;
#gzip on;
#gzip_disable "MSIE [1-6]\.(?!.*SV1)";
server_tokens off;
include /etc/nginx/conf.d/*.conf;
}
** 更新 **
我设法解决了这个问题,并添加了一篇关于我如何修复它的博客文章。
http://devsforrest.com/116/boost-settings-on-media-temple-for-maximum-settings