yum方式部署 lnmp Nginx版本为1.24 php的版本为8.0
时间: 2024-02-05 11:10:40 浏览: 199
Linux/Centos/RHEL yum 安装/部署 Nginx
首先,你需要在你的操作系统中安装 yum 包管理器。然后,按照以下步骤进行部署:
1. 添加 EPEL 和 REMI 软件仓库:
```
sudo yum install epel-release
sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
```
2. 安装 Nginx 和 PHP:
```
sudo yum install nginx
sudo yum install php80-php-fpm php80-php-mysqlnd php80-php-opcache php80-php-xml php80-php-mbstring php80-php-json php80-php-gd
```
3. 启动 Nginx 和 PHP-FPM:
```
sudo systemctl start nginx
sudo systemctl start php80-php-fpm
```
4. 配置 Nginx:
打开 `/etc/nginx/conf.d/default.conf` 文件,并将以下内容添加到 `server` 块中:
```
location ~ \.php$ {
root /usr/share/nginx/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
```
5. 重启 Nginx:
```
sudo systemctl restart nginx
```
现在,你已经成功地使用 yum 方式部署了 LNMP,Nginx 版本为 1.24,PHP 版本为 8.0。
阅读全文