: This article mainly introduces how to build the LNMP environment (2) integrate Nginx and PHP. if you are interested in the PHP Tutorial, refer to it. There are many ways to install Nginx. here we will compile the source code for installation and use the following command:
If an error occurs during installation:
Install PCRE first:
After installation, the Nginx installation directory is in/usr/local/nginx.
Next, modify the nginx configuration file (/usr/local/nginx/conf/nginx. conf) so that it can process the PHP script:
Finally, start PHP-FPM first when starting Nginx.
To restart or disable Nginx, run the following command:
PHP-FPM is more troublesome, you need to first use ps-ef | grep php-fpm to obtain the master process ID, and then use kill-USR2:
Note: The-USR2 parameter is restart, and The-INT parameter is disabled.
The above introduces how to build the LNMP environment (2) integrate Nginx and PHP, including some content, and hope to help friends who are interested in PHP tutorials.