解决nginx中fastcgi(php-fpm)60s超时的问题

在配置中加上

location ~ .*.(php|php5)?$ {
 fastcgi_pass 127.0.0.1:9000;
 fastcgi_read_timeout 700;
 fastcgi_index index.php;
 include fastcgi.conf;
 }

原文地址:https://www.cnblogs.com/huangye-dream/p/3852378.html