赞
踩
注:此方案要求手机已root! 方案二则无需root!
具体如何获取root权限,根据各自的设备自行查找解决方案,本人是一台小米手机,直接安装开发者版本系统后即可获取root,部分厂商root后不支持保修,请谨慎操作,产生的任何问题本人概不负责。
方案二手把手教学视频见Bilibili:https://www.bilibili.com/video/BV1wV4y1p72j
【玩机】手把手带你在手机/平板上搭建私人云盘
注:配置中的ssh记得勾选上,否则无法连接Centos进行后续操作!
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
bt service
填写相关的网站信息即可搭建完成
打开可道云网页,设置管理员账号密码并登录:
尽情享用私人云盘吧! 【免费版支持创建10个用户,可以满足家庭的日常使用!】
Termux换源(提高依赖安装速度):https://mirrors.tuna.tsinghua.edu.cn/help/termux/
参考:https://blog.csdn.net/stlinax/article/details/105876846
(1)Nginx设置PHP解析:
vim $PREFIX/etc/php-fpm.d/www.conf
【vim的基本使用:搜索/,插入i,保存:wq】(2)配置Nginx对PHP的代理:
vim $PREFIX/etc/nginx/nginx.conf
index index.html index.htm;
修改为:index index.html index.htm index.php;
location ~ \.php$
在前面插入以下内容:location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /data/data/com.termux/files/usr/share/nginx/html$fastcgi_script_name;
include fastcgi_params;
}
php-fpm
nginx
cd $PREFIX/share/nginx/html
mkdir kod
cd kod
wget https://static.kodcloud.com/update/download/kodbox.1.22.zip
unzip kodbox.1.22.zip && chmod -Rf 777 ./*
没有wget工具则执行:pkg install wget安装
php -r "phpinfo();" | grep 'php.ini'
vim $PREFIX/etc/nginx/nginx.conf
# 在对应server下增加ipv6地址的监听,如:listen [::]:8080;
nginx -s reload
termux-setup-storage
→运行访问存储→创建软连接(见下方)ln -s /data/data/com.termux/files/home/storage/shared/本机文件夹 termux内部目录
【如:将安装目录全部映射到termux的home目录:ln -s /data/data/com.termux/files/home/storage/shared ~/】Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。