If you have a large WordPress setup or a server with limited resources, then you will often see the “504 Gateway Time-out” error.You can follow the steps given below to increase the timeout value. ...

If you have a large WordPress setup or a server with limited resources, then you will often see the “504 Gateway Time-out” error.
You can follow the steps given below to increase the timeout value. PHP default is 30s.
Changes in php.ini
If you want to change max execution time limit for php scripts from 30 seconds (default) to 300 seconds.
vim /etc/php5/fpm/php.ini
Set…
max_execution_time = 300
In Apache, applications running PHP as a module above would have suffice. But in our case we need to make this change at 2 more places.
Changes in PHP-FPM
This is only needed if you have already un-commented request_terminate_timeout parameter before. It is commented by default, and takes value of max_execution_time found in php.ini
Edit…
vim /etc/php5/fpm/pool.d/www.conf
Set…
request_terminate_timeout = 300
Changes in Nginx Config
To increase the time limit for example.com by
vim /etc/nginx/sites-available/example.com
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_read_timeout 300;
}
If you want to increase time-limit for all-sites on your server, you can edit main nginx.conf file:
vim /etc/nginx/nginx.conf
Add following in http{..} section
http {
#...
fastcgi_read_timeout 300;?
#...
}
Reload PHP-FPM & Nginx
Don’t forget to do this so that changes you have made will come into effect:
service php5-fpm reload
service nginx reload
More
- How to increase file-upload size limit in PHP-Nginx
- More optimization tips for WordPress-Nginx setup
本文标题为:Increase PHP script execution time with Nginx


基础教程推荐
- Laravel 解决composer相关操作提示php相关异常的问题 2023-03-08
- php+mysql开发的最简单在线题库(在线做题系统)完整案例 2023-01-04
- PHP laravel使用自定义邮件类实现发送邮件 2023-07-03
- PHP基于反射机制实现自动依赖注入的方法详解 2022-10-02
- php生成短网址/短链接原理和用法实例分析 2023-04-20
- PHP采用get获取url汉字出现乱码的解决方法 2024-03-28
- Laravel修改验证提示信息为中文的示例 2023-03-08
- php去除deprecated的实例方法 2022-09-02
- php如何获取当前日期和星期 2024-12-06
- PHP字符串函数系列之nl2br(),在字符串中的每个新行 (\n) 之前插入 HTML 换行符br 2024-03-28