


Nginx is a high-performance, high-concurrency web server software, and PHP is a common development language that can be used by Nginx. However, when using Nginx, you may encounter the problem of PHP files not executing. This is usually caused by PHP execution timeout. Well, this article will introduce how to solve this problem by setting the PHP execution time in Nginx.
Step one: Check the current PHP execution time settings
Before you start adjusting the PHP execution time of Nginx, you need to understand the current settings. You can check the current PHP execution time setting by executing the following command:
php -i | grep "max_execution_time"
This will output the current PHP execution time limit. By default, it is set to 30 seconds.
Step 2: Modify the PHP execution time settings in Nginx
To change the PHP execution time settings in Nginx, you need to edit the Nginx website configuration file. In this example, we assume that your Nginx website configuration file is located in the /etc/nginx/sites-available/ directory and named it example.com.
Open the example.com file and find the following code:
location ~ \.php$ { fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
In this code block, you need to add the fastcgi_read_timeout directive. This directive is used to set the execution time of the PHP script in seconds.
location ~ \.php$ { fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; fastcgi_read_timeout 300; # 5 minutes }
In this example, we extend the PHP execution time to 5 minutes.
Step 3: Reload Nginx configuration and test
You have changed the PHP execution time settings in Nginx. Now, you need to reload the Nginx configuration file for the changes to take effect.
sudo systemctl reload nginx
Next, you can test whether the PHP execution time has been changed successfully. You can test this by creating a simple PHP script.
<?php sleep(300); # sleep for 5 minutes echo "Hello World!"; ?>
Save the above code as test.php and upload it to the web directory in your Nginx server. Now you can access the file in your web browser and wait 5 minutes to see if the output is correct.
Summary
Now, you have learned how to solve the problem of PHP script not executing by setting the PHP execution time in Nginx. By following the steps in this article to set it up, you can ensure that your PHP script executes completely without worrying about PHP execution timeouts.
The above is the detailed content of What should I do if the nginx php file does not take execution time?. For more information, please follow other related articles on the PHP Chinese website!

The article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and

The article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.

Article discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.

The article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand

The article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur

The article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.

The article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.

The article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function