Home Backend Development PHP Problem nginx php development environment setup

nginx php development environment setup

May 06, 2023 pm 08:16 PM

With the rapid development of the Internet, Web development has become an inevitable part of the IT industry. In web development, Nginx and PHP are two inevitable key technologies. This article will introduce how to set up a development environment for Nginx and PHP to help beginners get started quickly.

  1. Install Nginx

Nginx is a high-performance web server software that supports reverse proxy, load balancing, caching and other functions. In this chapter, we will introduce how to install and configure Nginx.

(1) Install Nginx

In the Ubuntu system, use the following command to install the Nginx software:

sudo apt-get install nginx
Copy after login

(2) Start the Nginx service

Installation completed After that, use the following command to start the Nginx service:

sudo systemctl start nginx
Copy after login

(3) Check the Nginx status

Use the following command to check the Nginx status:

sudo systemctl status nginx
Copy after login

If the status is displayed as active (running ), it means that Nginx has been started successfully.

  1. Install PHP

PHP is a scripting language for writing web applications. It can work with Nginx to provide services. In this chapter, we will introduce how to install PHP and configure it to work with Nginx.

(1) Install PHP

In Ubuntu system, use the following command to install PHP software:

sudo apt-get install php-fpm
Copy after login

(2) Configure PHP

After installation is completed , some configuration is required so that PHP can work with Nginx. First edit the php.ini file:

sudo nano /etc/php/7.2/fpm/php.ini
Copy after login

In the open file, find the following three lines:

;cgi.fix_pathinfo=1
Copy after login

Change them to:

cgi.fix_pathinfo=0
Copy after login

This is done to prevent PHP from A security issue occurs when the interpreter handles parameters in URLs.

Next, you need to edit the Nginx site configuration file:

sudo nano /etc/nginx/sites-available/default
Copy after login

Add the following content at the end of the file:

location ~* \.php$ {
    fastcgi_pass unix:/run/php/php7.2-fpm.sock;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}
Copy after login

This is done to enable the PHP program in Nginx, and Pass the request to the PHP interpreter.

Finally, restart the PHP service to make the above changes take effect:

sudo systemctl restart php7.2-fpm
Copy after login
  1. Test environment

After setting up the development environment for Nginx and PHP, you need Test to make sure everything is working properly.

(1) Create a test file

First, create a file named info.php in the Nginx website root directory (default is /var/www/html/):

sudo nano /var/www/html/info.php
Copy after login

Add the following content to the file:

<?php
phpinfo();
?>
Copy after login

This is a basic function of PHP, used to display the current PHP configuration information.

(2) Visit the test page

and enter the following URL in the web browser:

http://服务器IP地址/info.php
Copy after login

where the server IP address refers to the IP of the server you are using address. If everything is fine, you should be able to see a detailed list of PHP configuration information in your browser.

At this point, the development environment for Nginx and PHP has been set up. You can install and configure other web development-related software as needed, such as databases, version control tools, etc., to better manage and develop web applications.

The above is the detailed content of nginx php development environment setup. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

OWASP Top 10 PHP: Describe and mitigate common vulnerabilities. OWASP Top 10 PHP: Describe and mitigate common vulnerabilities. Mar 26, 2025 pm 04:13 PM

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.

PHP 8 JIT (Just-In-Time) Compilation: How it improves performance. PHP 8 JIT (Just-In-Time) Compilation: How it improves performance. Mar 25, 2025 am 10:37 AM

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

PHP Secure File Uploads: Preventing file-related vulnerabilities. PHP Secure File Uploads: Preventing file-related vulnerabilities. Mar 26, 2025 pm 04:18 PM

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.

PHP Encryption: Symmetric vs. asymmetric encryption. PHP Encryption: Symmetric vs. asymmetric encryption. Mar 25, 2025 pm 03:12 PM

The article discusses symmetric and asymmetric encryption in PHP, comparing their suitability, performance, and security differences. Symmetric encryption is faster and suited for bulk data, while asymmetric is used for secure key exchange.

PHP Authentication & Authorization: Secure implementation. PHP Authentication & Authorization: Secure implementation. Mar 25, 2025 pm 03:06 PM

The article discusses implementing robust authentication and authorization in PHP to prevent unauthorized access, detailing best practices and recommending security-enhancing tools.

PHP API Rate Limiting: Implementation strategies. PHP API Rate Limiting: Implementation strategies. Mar 26, 2025 pm 04:16 PM

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

PHP Input Validation: Best practices. PHP Input Validation: Best practices. Mar 26, 2025 pm 04:17 PM

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.

PHP CSRF Protection: How to prevent CSRF attacks. PHP CSRF Protection: How to prevent CSRF attacks. Mar 25, 2025 pm 03:05 PM

The article discusses strategies to prevent CSRF attacks in PHP, including using CSRF tokens, Same-Site cookies, and proper session management.

See all articles