mgv2000电视盒子恢复系统,安装nginx,php

23August

9:45 PM

98 次浏览

0 条评论

diskgenius 还原rootfs到U盘
连接xshell 通过xftp拷贝BACKUP-arm-64-emmc.img.gz到ddbr下
输入ddbr恢复系统

安装nginx
apt-get install nginx 如果失败,先更新软件

安装php
sudo apt install -y php php-fpm php-cli php-mysql php-curl php-gd php-mbstring php-xml php-zip

php -v  # 查看版本

编辑 Nginx 站点配置:
sudo nano /etc/nginx/sites-available/default
添加 PHP 支持:
server {
  location ~ \.php$ {
    include snippets/fastcgi-php.conf;
    fastcgi_pass unix:/run/php/php<版本>-fpm.sock; # 如 php8.2-fpm
  }
}

sudo systemctl reload nginx 重启生效
 /var/www/html;  站点目录

留言评论
称呼
邮箱
网址