在 MacOS 中,安装 PHP7 FPM 可以通过 Homebrew 来完成。以下是具体步骤:
### 1. 安装 Homebrew
Homebrew 是 MacOS 的包管理器,可以方便地在终端中管理软件。如果你已经安装了 Homebrew,可以跳过这一步。
在终端中输入以下命令来安装 Homebrew:
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
### 2. 安装 PHP7
在终端中输入以下命令来安装 PHP7:
```
brew install php@7.4
```
### 3. 安装 PHP FPM
在终端中输入以下命令来安装 PHP FPM:
```
brew install php@7.4-fpm
```
### 4. 配置 Nginx
PHP FPM 需要与 Nginx 配合使用。以下是一个简单的 Nginx 配置示例:
```
server {
listen 80;
server_name example.com;
root /var/www/example.com;
location / {
index index.php;
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
}
}
```
### 5. 启动 PHP FPM
在终端中输入以下命令来启动 PHP FPM:
```
sudo brew services start php@7.4-fpm
```
### 6. 测试
在 /var/www/example.com 目录下创建一个 index.php 文件,并在文件中输入以下代码:
```
phpinfo();
?>
```
在浏览器中访问 http://example.com/index.php,如果一切正常,你会看到 PHP 的信息页面。
以上就是在 MacOS 中安装 PHP7 FPM 的步骤。如果你有任何问题或建议,请在评论中与我们分享。