Home > Operation and Maintenance > Nginx > How to set up macbook nginx php environment

How to set up macbook nginx php environment

PHPz
Release: 2023-05-24 11:16:48
forward
1971 people have browsed it

Step One: Install Homebrew

Homebrew is a very easy-to-use software installation package manager under Mac OS X. It allows developers to install easily Various development programs, such as PHP, MySQL, etc. Enter the following command in the terminal to install Homebrew:

/usr/bin/ruby –e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Copy after login

After the installation is successful, you can check whether the installation is successful by running the following command:

brew –v
Copy after login

Outputting the version number proves that Homebrew has been successfully installed.

Step 2: Install Nginx

The lightweight web server with simple installation and configuration and high performance is Nginx. Use the following command to install Nginx on macOS system:

brew install nginx
Copy after login

After the installation is complete, you can use the following command to start the Nginx server:

nginx
Copy after login

Use the following command to shut down the Nginx server:

nginx –s stop
Copy after login

Step 3: Install PHP

PHP is a widely used server-side scripting language that plays a vital role in web development. Use the following command to install PHP on macOS system:

brew install php
Copy after login

After the installation is complete, you can use the following command to view the PHP version in the terminal:

php –v
Copy after login

Step 4: Configure Nginx server

Configure the Nginx server to use PHP to handle web requests. This requires that Nginx and PHP must be installed in advance. Nginx configuration files are stored in the directory /etc/nginx in macOS. Open the Nginx configuration file using the following command:

sudo nano /etc/nginx/nginx.conf
Copy after login

In the opened file, add the following code in the server block:

location ~ \.php$ {
    fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;
    fastcgi_param  QUERY_STRING      $query_string;
    fastcgi_param  REQUEST_METHOD    $request_method;
    fastcgi_param  CONTENT_TYPE      $content_type;
    fastcgi_param  CONTENT_LENGTH    $content_length;
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    include        fastcgi_params;
}
Copy after login

Save and close the file.

Step 5: Test the PHP environment

The last step is to test whether the PHP environment is configured correctly. Please create a new file named phpinfo.php in the root directory of the website and add the following code to the file:

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

Save and close the file. Then visit http://localhost/phpinfo.php in the browser, and you can see the PHP configuration information on the page.

The above is the detailed content of How to set up macbook nginx php environment. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template